1

在此处输入图像描述 这是我的数据库的图像,您可以在此处看到图像以字节格式成功插入。这种数据库结构

public void onCreate(SQLiteDatabase db) { 
    final String[] creatStatments = new String[]{"create table "
            + Image_handler
            + "(_id INTEGER PRIMARY KEY AUTOINCREMENT,"+ Image_handeler_column+" BLOB)" 
};

我正在使用以下代码从数据库中检索图像

          System.out.println(" satrt image rertrive");
        cursor = dh.rawQuery("SELECT _id, image_byte FROM image_database",null);
                int i=0;
        if (cursor.moveToFirst()) {
            do {
                   String str_cursor =cursor.getString(1);
                   System.out.println("string value of cursor"+str_cursor);

               // get  the  data into array,or class variable   
                bb = cursor.getBlob(cursor.getColumnIndex(DatabaseHelper.Image_handeler_column));
                System.out.println("byte array value"+bb);
            i++;  
            } while (cursor.moveToNext());
            Bitmap bmp=BitmapFactory.decodeByteArray(bb,0,bb.length);
            System.out.println("bitmap value"+bmp);

             imageView.setImageBitmap(bmp);

        }

虽然我正在处理字节数组值的上述代码值,但对我来说显示 B@405889a8 并且 bmp (位图)值对我来说是空的。那么为什么我将 bmp 值设为 null 。我要更新我的问题。为了从 url 在数据库中插入图像,我使用以下代码

         static private Bitmap downloadBitmap(String url) throws IOException {
    HttpUriRequest request = new HttpGet(url);
    HttpClient httpClient = new DefaultHttpClient();
    HttpResponse response = httpClient.execute(request);

    StatusLine statusLine = response.getStatusLine();
    int statusCode = statusLine.getStatusCode();  
    if (statusCode == 200) {
        System.out.println("kjklcmklxc");
      HttpEntity entity = response.getEntity();
      byte[] bytes = EntityUtils.toByteArray(entity);

      Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0,
          bytes.length);
      bitmap.compress(Bitmap.CompressFormat.JPEG, 40, byt_aary_outpt_strm);
    dh.delete(DatabaseHelper.Image_handler, null, null);
      bitmapdata = byt_aary_outpt_strm.toByteArray();
      System.out.println("bitmap of image converted image");
      for(int i =0 ; i<bitmapdata.length;i++){
          convert_save_byte_str = convert_save_byte_str+bitmapdata[i];
      }
      System.out.println("njdsfnh"+convert_save_byte_str);
      ContentValues userdetailValues = new ContentValues();

        userdetailValues.put("image_byte", convert_save_byte_str);
        System.out.println("between put and insert");
        dh.insert(DatabaseHelper.Image_handler, null, userdetailValues); 
        cursor = dh.rawQuery("SELECT _id, image_byte FROM image_database",null);
        int i=0;
        if (cursor.moveToFirst()) {
            do {


               // get  the  data into array,or class variable   
                bb = cursor.getBlob(cursor.getColumnIndex(DatabaseHelper.Image_handeler_column));
                //System.out.println("productid"+data);
                //intent.putExtra("product_id", data);
                System.out.print("bytengkfgkjgk"+bb[i]);

            i++;
            } while (cursor.moveToNext());
        }

      return bitmap;    
    } else {
      throw new IOException("Download failed, HTTP response code "
          + statusCode + " - " + statusLine.getReasonPhrase());
    }
  }
4

0 回答 0