在android中将图像插入realm数据库

前端之家收集整理的这篇文章主要介绍了在android中将图像插入realm数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写 Android应用程序,我想在Realm数据库中本地保存配置文件的图像.我找不到任何关于这方面的文件.
我怎样才能做到这一点 ???

解决方法

首先,convert bitmap to byte array
Bitmap bmp = intent.getExtras().get("data");
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG,100,stream);
byte[] byteArray = stream.toByteArray();

稍后,将byte []保存到Realm中

注意:字符串和字节数组(byte [])不能大于16 MB(来自Realm文档)

字段类型

Realm supports the following field types: boolean,byte,short,ìnt,long,float,double,String,Date and byte[]. The integer types byte,int,and long are all mapped to the same type (long actually) within Realm. Moreover,subclasses of RealmObject and RealmList are supported to model relationships.

原文链接:https://www.f2er.com/android/317851.html

猜你在找的Android相关文章