我想在 android 中使用使用 ORMLite 的预先存在的数据库文件。我有已经创建的数据库的 database.db 文件。我想在我的应用程序中使用它。
我的课程扩展了 OrmLiteSqliteOpenHelper。
任何人都可以有一个想法吗?请帮忙
我使用
public static void copyDataBase(String path,Context c) throws IOException{将数据库文件复制到数据路径中
//Open your local db as the input stream
InputStream myInput = c.getAssets().open("Mydb.db");
// Path to the just created empty db
String outFileName = "/data/data/packageName/databases/databaseName";
String outFileName2 = "/data/data/packageName/databases/";
File file = new File(outFileName2);
if(!file.exists())
file.mkdirs();
//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();
}
但它不会帮助我。