sqlite 存儲圖片

一、bitmap保存到SQLite 中 數據格式:    express

Java代碼   收藏代碼
  1. db.execSQL("Create table express ( _id INTEGER PRIMARY KEY AUTOINCREMENT,express_no varchar(100),express_name TEXT,express_img BLOB );");  

 

二、bitmap 變爲 Blob   緩存

Java代碼   收藏代碼
  1. ContentValues values = new ContentValues();  
  2. Bitmap bmp=BitmapFactory.decodeResource(getResources(), R.drawable.erweima);
  3. final ByteArrayOutputStream os = new ByteArrayOutputStream();   
  4. bmp.compress(Bitmap.CompressFormat.PNG, 100, os);    
  5. values.put("express_img", os.toByteArray());  
  6. values.put("express_name","zf");  
  7. values.put("express_no","zf");  
  8. getContentResolver().insert("express", values);  

 

 三、從SQLite中讀取Bitmap    spa

Java代碼   收藏代碼
  1. byte[] in=cur.getBlob(cur.getColumnIndex("express_img"));  
  2. bmpout=BitmapFactory.decodeByteArray(in,0,in.length);  

 顯示在ImageView上code

Java代碼   收藏代碼
  1. ImageView imageView = (ImageView) view.findViewById(R.id.img);   
  2. ByteArrayInputStream stream = new ByteArrayInputStream(cur.getBlob(cur.getColumnIndex("express_img")));   
  3. imageView.setImageDrawable(Drawable.createFromStream(stream, "img"));   

 

總結:orm

inputStream:  做爲數據緩存,數據寫如何供別的對象讀取,其方法爲read();對象

outputStream:做爲數據緩存,未來向別的對象寫內容!其方法write();get

Java代碼   收藏代碼
  1. byte[] in=cur.getBlob(cur.getColumnIndex(MyUser.User.BITMAP_VALUES));  

 //這樣也能夠對數據進行初始化,byte是基本類型,不須要以前進行長度定義。input

相關文章
相關標籤/搜索