android开发时使用游标时一定要关闭_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android开发时使用游标时一定要关闭

android开发时使用游标时一定要关闭

 2013/10/17 16:25:32  大侠(cer)  博客园  我要评论(0)
  • 摘要:原代码如下:places=getPlaceDatas(context,cursor);cursor.close();应改为:try{places=getPlaceDatas(context,cursor);}finally{cursor.close();}不然会报如下错误:java.lang.IllegalStateException:Process3188exceededcursorquota100,willkillit
  • 标签:android 使用 开发 Android开发

原代码如下:

places = getPlaceDatas(context, cursor);
cursor.close();

应改为:

try{

places = getPlaceDatas(context, cursor);

}finally{
cursor.close();

}

不然会报如下错误

 java.lang.IllegalStateException: Process 3188 exceeded cursor quota 100will kill it

发表评论
用户名: 匿名