我正在做一个Android项目,并且我使用blob将图像存储在数据库中。我继续得到这些错误。非常感谢。谢谢你
Logcat显示
04-30 19:20:39.131:D / AbsListView(13034):onDetachedFromWindow
04-30 19:20:48.821:D / AbsListView(13034):获取MotionRecognitionManager
04-30 19:20:52.074:我/编辑按钮单击(13034):**********
04-30 19:20:52.154:D / skia(13034):--- SkImageDecoder :: Factory 返回null
我的代码解码`
Filenames c = dbHandler.Get_Files(USER_ID);
byte[] image=c.getImage();
Bitmap bitmap = BitmapFactory.decodeByteArray(image, 0, image.length); img.setImageBitmap(bitmap);
编码
ByteArrayOutputStream stream = new ByteArrayOutputStream(); theImage.compress(Bitmap.CompressFormat.JPEG, 100, stream);
imageName = stream.toByteArray();