0

我刚刚收到用户使用我的 Android 应用程序的错误报告。

java.lang.RuntimeException: Unable to start activity ComponentInfo{c`om.gurpswu.gurps/com.gurpswu.gurps.Home}: android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2669)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2685)
at android.app.ActivityThread.access$2300(ActivityThread.java:126)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2038)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4633)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0
at android.database.AbstractCursor.checkPosition(AbstractCursor.java:580)
at android.database.AbstractWindowedCursor.checkPosition(AbstractWindowedCursor.java:214)
at android.database.AbstractWindowedCursor.getInt(AbstractWindowedCursor.java:84)
at com.gurpswu.gurps.Player.getIntField(Player.java:137)
at com.gurpswu.gurps.Home.hudSetup(Home.java:102)
at com.gurpswu.gurps.Home.onCreate(Home.java:25)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2633)
... 11 more`

我无法重现问题。我希望你能帮助我。这是我在主屏幕上从 sqlite 数据库中检索值的代码。

 public String getStringField(String fieldName) {
        String[] columns = new String[] { KEY_ROWID, KEY_NAME, KEY_CITY,
                KEY_HEALTH, KEY_ENERGY, KEY_RANK, KEY_CASH, KEY_BALANCE,
                KEY_DONATED };

        Cursor c = ourDatabase.query(true, DATABASE_TABLE, columns, null, null,
                null, null, "_id DESC", "1");

        if (c != null) {
            c.moveToFirst();
            String name = c.getString(c.getColumnIndexOrThrow(fieldName));
            c.close();
            return name;
        }
        return null;
    }

    public int getIntField(String fieldName) {
        String[] columns = new String[] { KEY_ROWID, KEY_NAME, KEY_CITY,
                KEY_HEALTH, KEY_ENERGY, KEY_RANK, KEY_CASH, KEY_BALANCE,
                KEY_DONATED };

        Cursor c = ourDatabase.query(true, DATABASE_TABLE, columns, null, null,
                null, null, "_id DESC", "1");

        if (c != null) {
            c.moveToFirst();
            int result = c.getInt(c.getColumnIndexOrThrow(fieldName));
            c.close();
            return result;
        }
        return (Integer) null;
    }
4

3 回答 3

2

在堆栈跟踪中,第一行你有CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0. 做c.getCount()之前检查c.moveToFirst()

if(c != null) {
    try {
        if (c.getCount() > 0) {
            c.moveToFirst();
            return c.getInt(c.getColumnIndexOrThrow(fieldName));
        }
    }
    finally {
        c.close();
    }
}
于 2012-07-06T23:39:08.430 回答
1

我的猜测是,如果c.moveToFirst();没有任何记录,您必须检查的返回值,此调用应该失败(可能返回“虚假”值)

于 2012-07-06T23:34:24.367 回答
0

如果光标为空怎么办?

替换: if (c != null) 为: if (c != null && c.moveToFirst())

于 2012-07-06T23:36:33.530 回答