码迷,mamicode.com
首页 > 其他好文 > 详细

Cursor 游标

时间:2015-06-06 16:21:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

private void printCursor(Cursor cursor) {
  if(cursor != null && cursor.getCount() > 0) {
   
   while(cursor.moveToNext()) {
    
    int columnCount = cursor.getColumnCount(); // 列的总数
    
    for (int i = 0; i < columnCount; i++) {
     String columnName = cursor.getColumnName(i); // 取对应i位置的列的名称
     String columnValue = cursor.getString(i); // 取出对应i位置的列的值
     
     Log.i(TAG, "当前是第" + cursor.getPosition() + "行: " + columnName + " = " + columnValue);
    }
   }
   cursor.close();
  }
 }

Cursor 游标

标签:

原文地址:http://www.cnblogs.com/hanxing/p/4556698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!