Android中的Cursor关闭问题

 报错信息:
android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here

报错原因:
每次查询完成后需要关闭 SQLiteDatabase 对象、databaseHelper 对象、Cursor对象。其中有几个中途return掉了,没有对Cursor进行关闭。
关闭Cursor时最好使用try catch,在finally中进行关闭,保证所有分支都关闭掉。


Cursor cursor = null;
try{
    cursor = mContext.getContentResolver().query(uri,null,null,null,null);
    if(cursor != null){
        cursor.moveToFirst();
    //do something
    }
}catch(Exception e){
    e.printStatckTrace();
}finally{
    if(cursor != null){
        cursor.close();
    }
}


你可能感兴趣的:(Android)