隨筆 - 33, 文章 - 0, 評論 - 12, 引用 - 0
          數據加載中……

          android 保存圖片到數據庫

          方法一:
          Java代碼 復制代碼
          1. public void saveIcon(Bitmap icon) {   
          2.         if (icon == null) {   
          3.             return;   
          4.         }   
          5.   
          6.         // 最終圖標要保存到瀏覽器的內部數據庫中,系統程序均保存為SQLite格式,Browser也不例外,因為圖片是二進制的所以使用字節數組存儲數據庫的   
          7.         // BLOB類型   
          8.         final ByteArrayOutputStream os = new ByteArrayOutputStream();   
          9.         // 將Bitmap壓縮成PNG編碼,質量為100%存儲           
          10.         icon.compress(Bitmap.CompressFormat.PNG, 100, os);    
          11.         // 構造SQLite的Content對象,這里也可以使用raw   
          12.         ContentValues values = new ContentValues();    
          13.         // 寫入數據庫的Browser.BookmarkColumns.TOUCH_ICON字段   
          14.         values.put(Browser.BookmarkColumns.TOUCH_ICON, os.toByteArray());    
          15.            
          16.         DBUtil.update(....);//調用更新或者插入到數據庫的方法   
          17.     } 


          方法二:如果數據表入口時一個content:URI

           

          Java代碼 復制代碼
          1. import android.provider.MediaStore.Images.Media;   
          2. import android.content.ContentValues;   
          3. import java.io.OutputStream;   
          4.   
          5. // Save the name and description of an image in a ContentValues map.     
          6. ContentValues values = new ContentValues(3);   
          7. values.put(Media.DISPLAY_NAME, "road_trip_1");   
          8. values.put(Media.DESCRIPTION, "Day 1, trip to Los Angeles");   
          9. values.put(Media.MIME_TYPE, "image/jpeg");   
          10.   
          11. // Add a new record without the bitmap, but with the values just set.   
          12. // insert() returns the URI of the new record.   
          13. Uri uri = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, values);   
          14.   
          15. // Now get a handle to the file for that record, and save the data into it.   
          16. // Here, sourceBitmap is a Bitmap object representing the file to save to the database.   
          17. try {   
          18.     OutputStream outStream = getContentResolver().openOutputStream(uri);   
          19.     sourceBitmap.compress(Bitmap.CompressFormat.JPEG, 50, outStream);   
          20.     outStream.close();   
          21. catch (Exception e) {   
          22.     Log.e(TAG, "exception while writing image", e);   


          posted on 2011-11-17 14:09 建華 閱讀(1667) 評論(0)  編輯  收藏 所屬分類: Android

          主站蜘蛛池模板: 炉霍县| 禄劝| 开鲁县| 如东县| 文水县| 五台县| 凤台县| 贵阳市| 合作市| 长子县| 蒙山县| 康定县| 凭祥市| 保山市| 镇巴县| 易门县| 崇阳县| 茌平县| 五莲县| 定远县| 喀喇沁旗| 稷山县| 泸州市| 缙云县| 阳泉市| 龙川县| 临猗县| 祁阳县| 罗城| 永兴县| 石嘴山市| 章丘市| 忻城县| 宝坻区| 随州市| 平江县| 湘阴县| 乐业县| 金川县| 裕民县| 星座|