在我的项目中,我使用这个导入了一个sqlite数据库..
private void copyDataBase() throws IOException{
InputStream myInput = myContext.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();
}
工作正常。但是当我从DDMS文件资源管理器中删除数据库文件并尝试再次导入它时,代码就会崩溃。
它说找不到这样的文件并创建一个空数据库... 有没有办法克服这个问题?
答案 0 :(得分:1)
您必须先删除之前的数据库,然后再重新导入。
使用此Context.deleteDatabase("DB_NAME")