我的应用程序有一个静态数据库,我需要使用新内容进行更新。架构不会改变。我已将数据库放入assets/
应用程序启动它时,它会将数据库(在SQLiteOpenHelper
构造函数中)复制到应用程序的databases/
目录中。复制代码如下:
private void importAssets(boolean overWrite) throws IOException
{
AssetManager am = mCtx.getAssets();
InputStream in = am.open(DB_NAME);
FileOutputStream out;
byte[] buffer = new byte[1024];
int len;
File dir, db;
dir = new File(DB_DIR);
dir.mkdirs();
db = new File(dir, DB_NAME);
// if not first run return
if (!overWrite && db.exists())
{
Log.i(TAG, DB_DIR + "/" + DB_NAME + " exists, do nothing");
in.close();
return;
}
// copy the DB from assets to standard DB dir created above
out = new FileOutputStream(db);
while ((len = in.read(buffer)) > 0)
{
out.write(buffer, 0, len);
}
out.flush();
out.close();
in.close();
if (!db.exists())
{
Log.e(TAG, DB_DIR + "/" + DB_NAME + " does not exist");
}
}
该变量overWrite
是指示importAssets()
是否覆盖现有数据库的标志。true
仅当在 中匹配适当的条件时才设置为SQLiteOpenHelper.onUpgrade()
。在这种情况下,FileOutputStream
截断现有文件并用来自assets/
.
我这样做的原因是我有很多记录,我不想将它们硬编码到 Java 源代码中。我只想将数据库放在那里供用户访问。用户不能修改数据库,仅供查看。
主要活动是ListActivity
. 它从数据库中读取数据并使用 aCursor
和 a将其显示在列表中ListArray
。这是onResume()
按如下方式完成的:
protected void onResume()
{
super.onResume();
mContent = new PocketbookContent(this);
mDB = mContent.getReadableDatabase();
mRows = mDB.query("book_content",
new String[] { "id", "title" },
null,
null,
null,
null,
"id",
null);
String[] chapters = new String[mRows.getCount()];
mRows.moveToFirst();
for (int i = 0; i < mRows.getCount(); i++)
{
// assume title is in column 1
chapters[i] = mRows.getString(1);
mRows.moveToNext();
}
// set the adapter & insert data into view
mAdapter = new ArrayAdapter<String>(this,
R.layout.toc_row, chapters);
setListAdapter(mAdapter);
}
mRows
,mDB
并且mContent
都封闭在onPause()
.
新安装应用程序时,没有问题。一切运行良好。数据库被复制assets/
到databases/
目录中,应用程序运行。升级时出现问题。当它将表中的数据加载Cursor
到.null
NullPointerException
通过调试,我已经确认Cursor
第一行的结果是null
,而所有其他行都很好。我还确认数据库完好无损,所有数据都在那里。我通过添加代码来importAssets()
将数据库的另一个副本从databases/
目录(不是直接从assets/
)复制到我可以检查它的 SD 卡。我得出的结论是,该null
行正在传递给ArrayAdapter
构造函数,然后它崩溃了。这是堆栈跟踪的顶部:
D/AndroidRuntime( 6058): Shutting down VM
W/dalvikvm( 6058): threadid=1: thread exiting with uncaught exception (group=0x40015560)
E/AndroidRuntime( 6058): FATAL EXCEPTION: main
E/AndroidRuntime( 6058): java.lang.NullPointerException
E/AndroidRuntime( 6058): at android.widget.ArrayAdapter.createViewFromResource(ArrayAdapter.java:355)
E/AndroidRuntime( 6058): at android.widget.ArrayAdapter.getView(ArrayAdapter.java:323)
E/AndroidRuntime( 6058): at android.widget.AbsListView.obtainView(AbsListView.java:1430)
E/AndroidRuntime( 6058): at android.widget.ListView.makeAndAddView(ListView.java:1745)
E/AndroidRuntime( 6058): at android.widget.ListView.fillDown(ListView.java:670)
E/AndroidRuntime( 6058): at android.widget.ListView.fillFromTop(ListView.java:727)
E/AndroidRuntime( 6058): at android.widget.ListView.layoutChildren(ListView.java:1598)
E/AndroidRuntime( 6058): at android.widget.AbsListView.onLayout(AbsListView.java:1260)
E/AndroidRuntime( 6058): at android.view.View.layout(View.java:7175)
为什么我的第一行是Cursor null
?我认为数据库复制/覆盖没有问题,因为它在全新安装时工作正常,并且在升级时复制的数据库在使用sqlite3
.
目标 API 级别是10
.
编辑:这里是toc_row.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:padding="3px"
android:textSize="27dp"
android:textColor="#ffffff" />
编辑:当我将调试打印放在while()
循环中时,它显示来自Cursor
is的数据null
,但仅针对第一行:
V/RenderScript_jni( 195): surfaceDestroyed
I/TableOfContents( 6058): NUMROWS: 5
I/TableOfContents( 6058): 0: null
I/TableOfContents( 6058): 1: Introduction
I/TableOfContents( 6058): 2: The Police and Arrest
I/TableOfContents( 6058): 3: Being Detained
I/TableOfContents( 6058): 4: When You are Arrested
D/AndroidRuntime( 6058): Shutting down VM
注意,TableOfContents
是主要活动,从ListActivity
.
编辑:onUpgrade()
方法。它调用set to importAsssets()
。overWrite
true
public void onUpgrade(SQLiteDatabase db, int oldVer, int newVer)
{
if (ORIG_REL_SCHEMA_VER == oldVer &&
DB_SCHEMA_VER == newVer)
{
try
{
importAssets(true);
}
catch (IOException ioe)
{
Log.e(TAG, "importAssets() exception" + ioe.getMessage());
}
}
}
编辑(发现一个杂物):我发现了一种解决方法,可以防止崩溃并允许数据库升级。它实际上并没有解决问题,但至少对用户来说并不难看。我importAssets()
通过添加File.delete()
调用进行了修改:
if (!overWrite && db.exists())
{
Log.i(TAG, DB_DIR + "/" + DB_NAME + " exists, do nothing");
in.close();
return;
}
else if (overWrite)
{
db.delete();
}
因为只有当从 this 调用时才为overWrite
真,只会发生一次。它删除现有数据库并从. 根据我的测试,在对象被销毁之前实际上不会生效,因此事件并没有按照代码的建议实际发生。第一次调用时,会显示旧数据,但在下一次调用时,它将显示新数据。importAssets()
onUpgrade()
assets/
File.delete()
TableOfContents.onResume()
ArrayAdapter
无论如何,这是我的难题,因为似乎没有解释为什么在实际上有数据的情况下获得第 1 行Cursor
的值。null