【发布时间】:2014-05-15 18:09:35
【问题描述】:
我的问题是当数据库从资产文件夹复制到手机路径时,我的应用程序总是失败:
/data/data/at.atn.android/databases/
我的数据库名称:
atnRoutenplaner.sqlite3
我的转账代码:
private void copyDataBase() throws IOException{
//Open your local db as the input stream
InputStream myInput = myContext.getAssets().open(DB_NAME);
// Path to the just created empty db
String outFileName = DB_PATH + DB_NAME;
File sampleFile = new File(outFileName);
//Open the empty db as the output stream
OutputStream myOutput = new FileOutputStream(outFileName);
//transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer)) > 0) {
myOutput.write(buffer, 0, length);
}
//Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
}
【问题讨论】:
标签: android assets fileoutputstream