所以我最近在我正在编写的Android平板电脑应用程序中将我的数据库内容转换为ORMLite。到目前为止一切都很好,大多数事情被重构/重新编码。虽然我对最初作为BLOB存储在数据库中的内容有疑问。在我的原始数据模型中,它看起来像这样:
byte[] imageBytes;
但我不认为我可以在ORMLite中使用它,最好我能告诉它必须是一个字符串所以现在我有:
@DatabaseField
String picture;
但是现在,我很困惑如何读取和写入这些数据位作为字节等...我使用这样的代码将数据传送到数据库或从数据库传送数据:
...
//Set the clients image to what was captured...
Bitmap resized2= android.graphics.Bitmap.createScaledBitmap(thumbnail, thumbnail.getWidth()/2, thumbnail.getHeight()/2, true);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
resized2.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object
byte[] b = baos.toByteArray();
mClient.setImageBytes(b);
myImage.setImageBitmap(resized2);
//do save to the database of the image to the blob whose column is picture
ContentValues initialValues = new ContentValues();
initialValues.put("picture", mClient.getImageBytes());
String [] strArray = {""+sid};
long n = dbAdapter.updateRecordsInDB("clients", initialValues, "_id=?", strArray);
所以现在这就是我如何保存图像,如果ORMLite中没有BLOBS并且我必须使用字符串,我不知道如何做到这一点?
为了完整性,我将如何显示图像:
if(mClient.getImageBytes().length <= 1) //no image in database, thats fine use generic
myImage.setImageResource(R.drawable.sillo); // create a sillouhtette face icon here...
else
myImage.setImageBitmap((BitmapFactory.decodeByteArray(mClient.getImageBytes(),0, (mClient.getImageBytes()).length)));
那么我需要做些什么才能将这些图像输入和输出数据库,字符串的字段类型是否适合“Blob”?
答案 0 :(得分:23)
您确实可以在ORMLite中存储byte[]
个字段。引用manual about byte arrays:
字节数组(byte [])作为SQL类型VARBINARY持久化。这与DataType.SERIALIZABLE类型不同,后者将对象序列化为字节数组。
注意:由于向后兼容性,任何byte []类型的字段都必须使用dataType字段指定为DataType.BYTE_ARRAY或DataType.SERIALIZABLE,并且不会被自动检测。
因此,要使用byte [],您需要指定数据的类型:
@DatabaseField(dataType = DataType.BYTE_ARRAY)
byte[] imageBytes;
诀窍在于,由于某些向后兼容性问题,ORMLite不会自动检测byte[]
的类型。