我正在尝试将一张图像从 byte[] 转换为 Bitmap 以在 Android 应用程序中显示该图像。
byte[] 的值是由数据库获取的,我检查它是否为空。之后,我想转换图像但无法成功。程序显示 Bitmap 的值为空。
我认为在转换过程中存在一些问题。
如果您知道任何提示,请告诉我。
byte[] image = null;
Bitmap bitmap = null;
try {
if (rset4 != null) {
while (rset4.next()) {
image = rset4.getBytes("img");
BitmapFactory.Options options = new BitmapFactory.Options();
bitmap = BitmapFactory.decodeByteArray(image, 0, image.length, options);
}
}
if (bitmap != null) {
ImageView researcher_img = (ImageView) findViewById(R.id.researcher_img);
researcher_img.setImageBitmap(bitmap);
System.out.println("bitmap is not null");
} else {
System.out.println("bitmap is null");
}
} catch (SQLException e) {
}