无法将字节数组转换为位图(Android)

时间:2016-04-28 10:05:02

标签: java android bitmap bit

while(rs.next()){
String im = rs.getString("img_name");
byte[] image = im.getBytes();
Bitmap bitmapProfile = BitmapFactory.decodeByteArray(image, 0, image.length);
ImageView img = (ImageView) findViewById(R.id.imageview);
img.setImageBitmap(bitmapProfile);
}

在上面的代码中, bitmapProfile返回空值

0 个答案:

没有答案