如何查看插入真实设备的图像?

时间:2015-11-07 06:08:23

标签: android image apk

是否可以在Android中查看插入的图像?我应该使用哪个应用程序?我使用SQLite Debugger访问数据库内容并在图像列中看到<BLOB>。是否可以查看SQLite Debugger中插入的图像?

1 个答案:

答案 0 :(得分:0)

只查询表

Cursor cur=your query;
while(cur.moveToNext())
{
     byte[] photoblob=cur.getBlob(index of blob column);
}


现在将byte []照片转换为图片:

ByteArrayInputStream imagestrm = new ByteArrayInputStream(photoblob);
Bitmap img= BitmapFactory.decodeStream(imagestrm);

现在您可以将Bitmap设置为Imageview。

我希望你能明白我的意思。