我使用SQLite数据库在我的应用程序中存储数据。以下是我如何访问asynctask数据的示例:
ArrayList < Data > allMessages = new ArrayList<>();
String query = "SELECT * FROM ..........";
SQLiteDatabase db = this.getWritableDatabase();
Cursor c = db.rawQuery(query, new String[]{username});
try {
if (c.moveToFirst()) {
do {
Data data = new Data(c.getString(0),.....)
allMessages.add(data);
} while (c.moveToFirst());
}
} finally {
c.close();
}
在运行时,我得到了这个例外:
java.lang.RuntimeException: An error occured while executing doInBackground()
at android.os.AsyncTask$3.done(AsyncTask.java:304)
at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355)
at java.util.concurrent.FutureTask.setException(FutureTask.java:222)
at java.util.concurrent.FutureTask.run(FutureTask.java:242)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:818)
Caused by: java.lang.OutOfMemoryError: OutOfMemoryError thrown while trying to throw OutOfMemoryError; no stack available
目前,我的数据库包含20条记录,这是 - 我相信 - 不足以导致内存溢出......
感谢阅读。
答案 0 :(得分:2)
您的问题是您只曾读取第一条记录,因为您使用
} while (c.moveToFirst());
这只会读取第一条记录,而您的ArrayList
将填满第一条记录的数百万份。最终会出现OutOfMemory
错误。
相反,请使用
} while (c.moveToNext());
将正确阅读所有记录。