我正在使用this code(android-sqlite-asset-helper)从资产文件夹中的文件位置加载数据库。这很有效。
但是,刷新/升级数据库的过程并不简单,我想知道是否有一种简单的方法可以从应用程序中的数据库中手动删除所有数据;为了从资产文件加载新数据库。
答案 0 :(得分: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;
}
FileUtils类:
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 方法的地方:(。
有一点需要注意:当用户清理应用数据时,数据库将恢复为默认值。
答案 1 :(得分:0)
在主要活动创建中似乎可以使用它:
getApplicationContext().deleteDatabase("mydatabase.db");