我在 StackOverflow 上提出了不同的问题,但我的问题有点新。
所有这些都不起作用: Question1 Question2 Question3
我将设备更新为 Android KitKat 4.4,当我尝试使用以下代码复制数据库时:
private void copyDataBase() throws IOException {
InputStream myInput = context.getAssets().open(DB_NAME);
String outFileName = DB_PATH + DB_NAME;
OutputStream myOutput = new FileOutputStream(outFileName);
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer)) > 0) {
myOutput.write(buffer, 0, length);
}
myOutput.flush();
myOutput.close();
myInput.close();
}
我在以下行获得了 FileNotFoundException:
OutputStream myOutput = new FileOutputStream(outFileName);
有人在 Android KitKat 上解决了这个问题???(其他平台效果很好)
感谢帮助。
朱利奥