标签:android io 使用 sp on bs as nbsp 记录
1. FATAL EXCEPTION: AsyncTask #1 doInBackground()
原因:select语句拼写错误
如:String select = "((" + Contacts.DISPLAY_NAME + "NOTNULL ) AND (" + Contacts.DISPLAY_NAME + " != ‘‘ ))";将会报错 FATAL EXCEPTION: AsyncTask #1 doInBackground()
修改为String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL ) AND (" + Contacts.DISPLAY_NAME + " != ‘‘ ))";错误消失
解释: select语句中需要使用空格隔开 Contacts.DISPLAY_NAME等表达式和语句NOTNULL等。
标签:android io 使用 sp on bs as nbsp 记录
原文地址:http://www.cnblogs.com/vagrant1991/p/4161939.html