我正在尝试从我的应用程序导出SQLite数据库,以便我可以为我的应用程序执行导出/导入功能。
我正在使用here&中的示例here尝试从Android设备(Samsung Galaxy Note),Android 4.0中导出 SQLite数据库(/data/data/com.example.worldcountriesbooks/databases/group.db) .3但我一直收到这个错误
12-14 00:56:33.722: I/Failed(14850): java.io.FileNotFoundException: /data/data/com.example.worldcountriesbooks/databases/group.db: open failed: ENOENT (No such file or directory)
我还尝试添加WRITE_EXTERNAL_STORAGE
& WRITE_MEDIA_STORAGE
进入清单文件但不起作用。我可以浏览我的Android设备上的实际文件,因为它已植根但我无法通过我的应用程序阅读它。知道为什么吗?
示例代码:
try {
File sd = Environment.getExternalStorageDirectory();
File data = Environment.getDataDirectory();
if (sd.canWrite()) {
String currentDBPath = "//data//com.example.worldcountriesbooks/databases//group.db";
String backupDBPath = "//mnt//sdcard//database.db";
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
FileChannel src = new FileInputStream(currentDB).getChannel();
FileChannel dst = new FileOutputStream(backupDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
Toast.makeText(getBaseContext(), backupDB.toString(),
Toast.LENGTH_LONG).show();
}
} catch (Exception e) {
Toast.makeText(getBaseContext(), e.toString(), Toast.LENGTH_LONG)
.show();
}
答案 0 :(得分:1)
如果文件位于内部存储器中,则您的应用只能从内部存储器中的特殊文件夹中读取。该文件夹的路径返回:
getFilesDir().getAbsolutePath()
在你的情况下,它会是这样的:
String path= this.getFilesDir().getAbsolutePath() + File.separator + "databases" + File.separator + "group.db";
您可以使用openFileInput()
阅读。
更多信息:
http://developer.android.com/guide/topics/data/data-storage.html#filesInternal