如何使用android中的字节数组从数据库中获取图像路径

时间:2012-08-25 18:21:03

标签: android

W / System.err(15366):android.database.CursorIndexOutOfBoundsException:请求索引1,大小为1

byte[] bytes = cur.getBlob(cur.getColumnIndex(imgarr.get(i)));          
ByteArrayInputStream input = new ByteArrayInputStream(bytes);                
Bitmap bit = BitmapFactory.decodeStream(input);

1 个答案:

答案 0 :(得分:0)

您的Cursor只有一行,但您正在尝试访问Cursor的第二行。

添加以下行

cur.moveToFirst()

就在getBlob函数之前