這裏複製數據庫是我使用的代碼(在許多答案中):Android的 - 從資產
InputStream myInput;
try {
myInput = iNezamApplication.getAppContext().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();
} catch (IOException e1) {
e1.printStackTrace();
}
但是,我總是到達OutpoutStream線後得到一個異常:
java.io.FileNotFoundException: /data/data/package_name/databases/databasename.db: open failed: ENOENT (No such file or directory)
請考慮切換到測試,調試,並支持'SQLiteAssetHelper',而不是年齡,不支持的鱈魚「在許多答案中找到」:https://github.com/jgilfelt/android-sqlite-asset-helper – CommonsWare
謝謝,我知道它,但我不想使用它。我只需要回答我的問題。 –