我的应用程序中有一个 SQLite 数据库。当我在文件资源管理器中检查数据库是否已创建时,文件夹中没有任何数据库文件data
。它甚至没有显示使用该adb shell
命令。这是否意味着尚未创建数据库?关于如何解决这个问题的任何建议?
问问题
4809 次
1 回答
7
如果您使用的是实际设备,除非您对手机进行 root,否则您将无法从外部查看或访问它。
如果您使用的是模拟器,DDMS 视图将让您导航到它并从那里拉取它。
或者,您可能在创建数据库时遇到问题。没有看到您的代码,我们无法判断。
编辑
如果您想从真实设备上获取文件,您需要实现一种方法将其从数据目录复制到您可以访问的某个地方(例如您的 SD 卡)。这可以解决问题:
public void backup() {
try {
File sdcard = Environment.getExternalStorageDirectory();
File outputFile = new File(sdcard,
"YourDB.bak");
if (!outputFile.exists())
outputFile.createNewFile();
File data = Environment.getDataDirectory();
File inputFile = new File(data, "data/your.package.name/databases/yourDB");
InputStream input = new FileInputStream(inputFile);
OutputStream output = new FileOutputStream(outputFile);
byte[] buffer = new byte[1024];
int length;
while ((length = input.read(buffer)) > 0) {
output.write(buffer, 0, length);
}
output.flush();
output.close();
input.close();
} catch (IOException e) {
e.printStackTrace();
throw new Error("Copying Failed");
}
}
于 2012-06-22T04:26:06.690 回答