您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
Android中怎么利用LitePal操作数据库,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
1、把图片转换为字节
private byte[]img(Bitmap bitmap){
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos);
return baos.toByteArray();
}2、把图片存储到数据库
假设获取的图片为bitmap,数据库有一张User表,存储的属性为byte[]headshot
public class User extends DataSupport {
private byte[] headshot;//头像
public User(){
super();
}
public User(byte[]headshot){
super();
this.headshot=headshot;
}
public byte[] getHeadshot() {
return headshot;
}
public void setHeadshot(byte[] headshot) {
this.headshot = headshot;
}
}对图片进行保存
//获取到图片 Bitmap headShot=BitmapFactory.decodeFile(imagePath); //把图片转换字节流 byte[]images=img(headShot); //找到用户 User users=DataSupport.findFirst(User.class); //保存 users.setHeadshot(images); users.save();
4、获取图片
User mUser=DataSupport.findFrist(User.class); byte[]images=mUser.getHeadshot(); Bitmap bitmap=BitmapFactory.decodeByteArray(images,0,images.length);
看完上述内容,你们掌握Android中怎么利用LitePal操作数据库的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。