sqlite 存儲圖片


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

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

 

2、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);  

 

 3、從SQLite中讀取Bitmap    

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

 顯示在ImageView上

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"));   

 

總結:

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

outputStream:作為數據緩存,將來向別的對象寫內容!其方法write();

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

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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM