这里我附加了在Drawable中存储图像并使用BLOB数据类型传递给数据库的代码。
我试试这个,它存储得当但不能显示图像。
Insall_app_db i1 = new Insall_app_db();
i1.createDatabse(DB, getBaseContext());
i1.createTable(tableName, getBaseContext());
BitmapDrawable bitDw = ((BitmapDrawable) icon);
Bitmap bitmap = bitDw.getBitmap();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
String iconStr = imageInByte.toString();
i1.insertDataUser(tableName,appid,appname2,pname, versionName, versionCode,iconStr, long_date);
int appid = i1.GetUserData(getBaseContext(), tableName);
System.out.println("-------------------------------");
byte[] imaaa = iconStr.getBytes();
Bitmap aaa = convertByteArrayToBitmap(imaaa);
LayoutInflater li = getLayoutInflater();
v = li.inflate(R.layout.icon,null);
TextView tv = (TextView)v.findViewById(R.id.icon_text);
tv.setText(i1.app_name);
ImageView iv = (ImageView)v.findViewById(R.id.icon_image);
iv.setImageResource(R.drawable.icon);
Bitmap bitmap2 = ((BitmapDrawable)icon).getBitmap();
iv.setImageBitmap(aaa);
还有其他解决方案吗?
答案 0 :(得分:2)
要从sqlite数据库获取图像,我使用了以下内容:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] data=cur.getBlob(cur.getColumnIndex("img"));
baos.write(data);
然后显示我用来执行以下操作的图像:
InputStream is = database.getImageStream(someId);
Bitmap img = BitmapFactory.decodeStream(is);
下面的代码显示了如何将图像保存到BLOB字段
ByteArrayOutputStream bos = new ByteArrayOutputStream();
image.compress(CompressFormat.PNG, 100, bos);
byte[] bytes = bos.toByteArray();
可以使用
将字节添加到sqlite initialValues.put("<fieldname>", bytes); //ofcourse <fieldname> is of type BLOB