0

我决定更新我的应用程序及其数据库,但是在执行下面的代码并运行应用程序之后,我以一种奇怪的方式复制了数据库——有些部分被复制了,有些则没有。

最让我困惑的是,一切都在模拟器上完美运行,而在我的 Nexus 上却出现了问题。

public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    try {
        copyDatabase();
    } catch (IOException e) {
        throw new Error("Error copying database" + e.toString());
    }
}

public 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;

    // Open the empty db as the output stream
    OutputStream myoutput = new FileOutputStream(outfilename);

    // transfer byte to inputfile to 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();
}
4

2 回答 2

0

您的偏移量始终为 0。

所以你总是复制前 1024 个字节myinput

于 2013-06-18T21:52:06.420 回答
0

当然,最好执行 SELECT * 并将它们转储到新数据库中,方法是先将它们存储在临时位置而不是这种方式。如果更改表架构会发生什么?

另外,这不是打开文件并在进行过程中覆盖它吗?outfilename看起来与 DB 路径相同。

于 2013-06-18T21:50:38.573 回答