我刚收到使用我的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;
}
答案 0 :(得分: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();
}
}
答案 1 :(得分:1)
我的猜测是,如果没有任何记录,你必须检查c.moveToFirst();
的返回值,这个调用应该失败(可能返回一个“虚假”值)
答案 2 :(得分:0)
如果光标为空怎么办?
将此替换为:if(c!= null):if(c!= null&& c.moveToFirst())