Android java.lang.IllegalStateException:无法初始化游标窗口

时间:2012-10-17 06:52:49

标签: android database cursor android-sqlite illegalstateexception

我在谷歌播放崩溃报告中有这个错误,不知道如何解决它:

java.lang.IllegalStateException: Couldn't init cursor window
at android.database.CursorWindow.native_init(Native Method)
at android.database.CursorWindow.<init>(CursorWindow.java:41)
at android.database.sqlite.SQLiteCursor.fillWindow(SQLiteCursor.java:276)
at android.database.sqlite.SQLiteCursor.getCount(SQLiteCursor.java:268)
at android.database.AbstractCursor.moveToPosition(AbstractCursor.java:171)
at android.database.AbstractCursor.moveToFirst(AbstractCursor.java:248)
at com.jim2.UpdateService.restaureNotifications(UpdateService.java:274)
at com.jim2.helpers.Globals.updateWidgets(Globals.java:1011)
at com.jim2.helpers.Globals.onReceive(Globals.java:746)
at com.jim2.UpdateService$5.onSignalStrengthsChanged(UpdateService.java:747)
at android.telephony.PhoneStateListener$2.handleMessage(PhoneStateListener.java:387)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3693)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:907)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:665)
at dalvik.system.NativeStart.main(Native Method)

以下是发生崩溃的代码:

    DataBaseHelper d = new DataBaseHelper(context);
    Cursor c = d.getNotifications(false);
    SharedPreferences preferences;
    String ns = Context.NOTIFICATION_SERVICE;

    NotificationManager mNotificationManager = (NotificationManager)context.getSystemService(ns);

    CharSequence tickerText = "";

    if(c!=null && c.moveToFirst()){ // CRASH HERE :(

        do{
                       ....
       while(c.moveToNext());
       if(c!=null && !c.isClosed()) {
                c.close();c = null;
       }
    }
    d.close();

这里是从getNotifications获取光标的代码:

public Cursor getNotifications(boolean all) {
        //removeAllNotifications();
        Cursor c;
        String fields[] = new String[] { "id", "ordre", "is_active"};
        String where = "is_active = 1";
        if(all)where = "";
        c = myDataBase.query(TABLE, fields, where, null, null, null, "ordre");

        return c;
    }

我的问题是我无法重现崩溃所以我的设备很难解决原因所有工作正常。

已经看到这篇文章Android: Couldn't init Cursor Window但是我在moveToFirst上崩溃了,我已经在回答中添加了代码。

非常感谢

2 个答案:

答案 0 :(得分:5)

本机代码抛出此异常。 (参考this

主要是由于未能为正在创建的新游标分配内存。所以我的猜测是你获取的数据有时太多了(内存中的数据几乎超过1M),或者你在没有关闭它们的情况下打开大量光标,直到内存不足以分配新的缓冲区。

  1. 查看您的代码并确保您使用finally条款关闭所有游标。
  2. 如果从数据库中提取的数据可能太大,请将它们放在单独的块中(比如在一个列表中执行拉取以获取更多内容)。
  3. 请告诉我这是否有帮助。

答案 1 :(得分:0)

不确定,但不应该

        c = myDataBase.query(TABLE, fields, where, null, null, null, "ordre DESC")