2016-06-28 157 views
0

我正在使用this code(android-sqlite-asset-helper)从资产文件夹中的文件位置加载数据库。这很好。Android:从数据库中删除数据

但是,刷新/升级数据库的处理并不简单,我想知道是否有一种简单的方法可以手动从应用程序中的数据库中删除所有数据;以便从资产文件加载新的数据库。

+0

阅读技能0/10 ... https://github.com/jgilfelt/android-sqlite-asset-helper#upgrades-via-overwrite – Selvin

+0

@Selvin你是对的,它似乎你没有读过这个问题! ;-) – PatriceG

+0

“从应用程序中的数据库中删除所有数据;以便从资产文件加载新的数据库。” ==强制加载 – Selvin

回答

0

它似乎适用于此主要活动产生:

getApplicationContext().deleteDatabase("mydatabase.db"); 
0

您可以使用简单副本文件覆盖默认数据库中的数据。只需通过用新数据库文件覆盖默认数据库即可。 以下代码仅适用于一个文件,因此您需要稍作更改才能使其与资产文件一起使用。 这里覆盖数据库文件的方法:

/** 
* Copies the database file at the specified location over the current 
* internal application database. 
**/ 
public boolean importDatabase(Context context, String dbPath) throws IOException { 

    File OldDbFile = context.getApplicationContext().getDatabasePath(DBSchema.DATABASE_NAME); 
    // Close the SQLiteOpenHelper so it will commit the created empty 
    // database to internal storage. 
    close(); 
    File newDb = new File(dbPath); 
    if (newDb.exists()) { 
    FileUtils.copyFile(new FileInputStream(newDb), new FileOutputStream(OldDbFile)); 
    // Access the copied database so SQLiteHelper will cache it and mark 
    // it as created. 
    getWritableDatabase().close(); 

    return true; 
    } 
    return false; 
} 

文件实用程序类:

public class FileUtils { 
    /** 
    * Creates the specified <code>toFile</code> as a byte for byte copy of the 
    * <code>fromFile</code>. If <code>toFile</code> already exists, then it 
    * will be replaced with a copy of <code>fromFile</code>. The name and path 
    * of <code>toFile</code> will be that of <code>toFile</code>.<br/> 
    * <br/> 
    * <i> Note: <code>fromFile</code> and <code>toFile</code> will be closed by 
    * this function.</i> 
    * 
    * @param fromFile - FileInputStream for the file to copy from. 
    * @param toFile - FileInputStream for the file to copy to. 
    */ 
    public static void copyFile(FileInputStream fromFile, FileOutputStream toFile) 
     throws IOException { 
    FileChannel fromChannel = null; 
    FileChannel toChannel = null; 
    try { 
     fromChannel = fromFile.getChannel(); 
     toChannel = toFile.getChannel(); 
     fromChannel.transferTo(0, fromChannel.size(), toChannel); 
    } finally { 
     try { 
     if (fromChannel != null) { 
      fromChannel.close(); 
     } 
     } finally { 
     if (toChannel != null) { 
      toChannel.close(); 
     } 
     } 
    } 
    } 
} 

我真的忘了,我拿着的CopyFile方法:(

有一点需要注意:当用户清理应用程序数据时,数据库将恢复为默认状态。