我需要将sqlite数据库文件推送到手机应用程序存储位置。 我为我的应用包数据库尝试了this。但是没有工作。有什么办法吗?
我尝试在设备shell中使用下面的命令,但是找不到设备的消息。
shell@android: adb push MY_DB_FILE /data/data/MY_PACKAGE_NAME/databases/
答案 0 :(得分:-1)
每当需要数据库文件时,请调用下面显示的write()方法。它将在您设备的根文件夹中创建一个backupname.db文件。(您可以在backupDBPath字符串中更改.db文件的名称)
private void write() throws IOException {
File sd = Environment.getExternalStorageDirectory();
if (sd.canWrite()) {
String currentDBPath = DatabaseHelper.DATABASE_NAME;
String backupDBPath = "backupname.db";
File currentDB = new File(getDBPath(), currentDBPath);
File backupDB = new File(sd, backupDBPath);
if (currentDB.exists()) {
FileChannel src = new FileInputStream(currentDB).getChannel();
FileChannel dst = new FileOutputStream(backupDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
}
}
}
private String getDBPath() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
return getFilesDir().getAbsolutePath().replace("files", "databases") + File.separator;
} else {
return getFilesDir().getPath() + getPackageName() + "/databases/";
}
}