博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 保存图片到SQLite
阅读量:5954 次
发布时间:2019-06-19

本文共 1099 字,大约阅读时间需要 3 分钟。

hot3.png

1、bitmap保存到SQLite 中 数据格式:Blob

     demo。

     db.execSQL("Create table " + TABLE_NAME + "( _id INTEGER PRIMARY KEY AUTOINCREMENT,USER_AGE       INTEGER,USER_NAME TEXT,BITMAP_VALUES BLOB );");

2、bitmap 变为 Blob

 

    ContentValues values = new ContentValues();

    final ByteArrayOutputStream os = new ByteArrayOutputStream();  

    bmp.compress(Bitmap.CompressFormat.PNG, 100, os);   

    values.put(MyUser.User.BITMAP_VALUES, os.toByteArray()); 

    values.put(MyUser.User.USER_NAME,"icon"); 

    values.put(MyUser.User.USER_AGE,50);

    getContentResolver().insert(MyUser.User.CONTENT_URI, values);

 

3、从SQLite中读取Bitmap

     byte[] in=cur.getBlob(cur.getColumnIndex(MyUser.User.BITMAP_VALUES));

     bmpout=BitmapFactory.decodeByteArray(in,0,in.length);

 

总结:

inputStream:  作为数据缓存,数据写如何供别的对象读取,其方法为read();

outputStream:作为数据缓存,将来向别的对象写内容!其方法write();

byte[] in=cur.getBlob(cur.getColumnIndex(MyUser.User.BITMAP_VALUES));//这样也可以对数据进行初始化,byte是基本类型,不需要之前进行长度定义。(有待研究)

 

教训:

1、出错时没有仔细阅读Logcat的内容!比如在getBlob时显示request slot 出错,原因是在query时没有选择BITMAP_BLOB字段!

2、提高自己的分析判断定位错误的能力,不要把时间浪费在不可能出错的地方

3、提高英文能力

 

疑问:

Sqlite 一个数据库只能创建一个表?

转载于:https://my.oschina.net/yumingxinli/blog/108348

你可能感兴趣的文章
我的友情链接
查看>>
linux下mysql的root密码忘记解决方
查看>>
我的友情链接
查看>>
远程访问dmz和虚拟服务器的设置
查看>>
mysql主从配置
查看>>
HA集群配置
查看>>
UINavigationBar UINavigationItem UIBarButtonItem
查看>>
我的友情链接
查看>>
echarts
查看>>
Mac安装Brew
查看>>
Python yield 使用浅析
查看>>
Android UI-实现底部切换标签(fragment)
查看>>
string类常用单字符处理函数
查看>>
MYSQL 时间函数总结
查看>>
大话数据结构读书笔记系列(七)图
查看>>
java队列,ArrayBlockingQueue
查看>>
Linux 下java jdk安装
查看>>
ITV/IPTV常见错误代码及解决办法
查看>>
android studio打包aar心得
查看>>
嵌入式环境搭建之NFS
查看>>