web-dev-qa-db-ja.com

画像をSqliteにblobとして保存する方法と取得する方法は?

画像を(URLから)sqliteデータベースに保存したい。

そのために私は使用します:

db = new DataBase(getApplicationContext());
URL url = new URL("http://sree.cc/wp-content/uploads/schogini_team.png");
URLConnection ucon = url.openConnection();
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is,128);
ByteArrayBuffer barb= new ByteArrayBuffer(128);

int current = 0;
while ((current = bis.read()) != -1) {
    barb.append((byte) current);
}

ContentValues filedata= new ContentValues();

filedata.put(DataBase.IMG_SRC,barb.toByteArray());

db.insert(DataBase.Table_Img, null, filedata);

Insert()内:

public void insert(String tableImg, Object object,
        ContentValues dataToInsert) {
    // TODO Auto-generated method stub
    String sql = "INSERT INTO "+tableImg+" ("+ID+","+IMG_SRC+") " +
            "VALUES ('"+1+"','"+dataToInsert+"')";
    db.execSQL(sql);
}

画像の取得:

Cursor cursor = db.selectDataToShow(DataBase.Table_Img, DataBase.IMG_SRC);

byte[] imageByteArray=cursor.getBlob(cursor.getColumnIndex(DataBase.IMG_SRC));      
cursor.close();

ByteArrayInputStream imageStream = new ByteArrayInputStream(imageByteArray);
Bitmap theImage = BitmapFactory.decodeStream(imageStream);

System.out.println(">>>>>>>>>>>>>>>>>>>>>> "+theImage);

だからここでnullを得た。

私のデータベースでは、画像の値は次のように保存されています:Image=[B@43e5ac48]

73
Siten

ここで私のアプリに使用したコード

このコードは、URLから画像を取得し、バイト配列に変換します

byte[] logoImage = getLogoImage(IMAGEURL);

private byte[] getLogoImage(String url){
     try {
             URL imageUrl = new URL(url);
             URLConnection ucon = imageUrl.openConnection();

             InputStream is = ucon.getInputStream();
             BufferedInputStream bis = new BufferedInputStream(is);

             ByteArrayBuffer baf = new ByteArrayBuffer(500);
             int current = 0;
             while ((current = bis.read()) != -1) {
                  baf.append((byte) current);
             }

             return baf.toByteArray();
     } catch (Exception e) {
          Log.d("ImageManager", "Error: " + e.toString());
     }
     return null;
}

イメージをdbに保存するには、このコードを使用しました。

 public void insertUser(){
        SQLiteDatabase db = dbHelper.getWritableDatabase();
        String delSql = "DELETE FROM ACCOUNTS";
        SQLiteStatement delStmt = db.compileStatement(delSql);
        delStmt.execute();

        String sql = "INSERT INTO ACCOUNTS (account_id,account_name,account_image) VALUES(?,?,?)";
        SQLiteStatement insertStmt = db.compileStatement(sql);
        insertStmt.clearBindings();
        insertStmt.bindString(1, Integer.toString(this.accId));
        insertStmt.bindString(2,this.accName);
        insertStmt.bindBlob(3, this.accImage);
        insertStmt.executeInsert();
        db.close();
}

画像を取得するために、これは私が使用したコードです。

public Account getCurrentAccount() {
    SQLiteDatabase db = dbHelper.getWritableDatabase();
    String sql = "SELECT * FROM ACCOUNTS";
    Cursor cursor = db.rawQuery(sql, new String[] {});

    if(cursor.moveToFirst()){
        this.accId  = cursor.getInt(0);
        this.accName = cursor.getString(1);
        this.accImage = cursor.getBlob(2);
    }
    if (cursor != null && !cursor.isClosed()) {
        cursor.close();
    }
    db.close();
    if(cursor.getCount() == 0){
        return null;
    } else {
        return this;
    }
}

最後に、この画像を画像ビューにロードします

logoImage.setImageBitmap(BitmapFactory.decodeByteArray( currentAccount.accImage, 
        0,currentAccount.accImage.length));
65
blessenm

dBAdaper i.eデータベースヘルパークラスでは、このようなテーブルを宣言します

 private static final String USERDETAILS=
    "create table userdetails(usersno integer primary key autoincrement,userid text not null ,username text not null,password text not null,photo BLOB,visibility text not null);";

このような値を挿入し、

最初に画像をbyte []として変換します

ByteArrayOutputStream baos = new ByteArrayOutputStream();  
Bitmap bitmap = ((BitmapDrawable)getResources().getDrawable(R.drawable.common)).getBitmap();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos);   
byte[] photo = baos.toByteArray(); 
db.insertUserDetails(value1,value2, value3, photo,value2);

dEAdaperクラス

 public long insertUserDetails(String uname,String userid, String pass, byte[] photo,String visibility) 
{
    ContentValues initialValues = new ContentValues();
    initialValues.put("username", uname);
    initialValues.put("userid",userid);
    initialValues.put("password", pass);
    initialValues.put("photo",photo);
    initialValues.put("visibility",visibility);
    return db.insert("userdetails", null, initialValues);
}

次のように画像を取得します

Cursor cur=your query;
while(cur.moveToNext())
{
     byte[] photo=cur.getBlob(index of blob cloumn);
}

byte []を画像に変換します

ByteArrayInputStream imageStream = new ByteArrayInputStream(photo);
Bitmap theImage= BitmapFactory.decodeStream(imageStream);

このコンテンツはあなたの問題を解決するかもしれないと思います

24
Balaji.K

Insert()で

public void insert(String tableImg, Object object,
        ContentValues dataToInsert) {

   db.insert(tablename, null, dataToInsert);
}

お役に立てば幸いです。

1
Nishant Shah

ionicプロジェクトの場合

 
 var imgURI = ""; 
 var imgBBDD = ""; // [に保存するためのsqllite 
 
関数takepicture(){
 var options = {
 quality:75、
 destinationType:Camera.DestinationType。 DATA_URL、
 sourceType:Camera.PictureSourceType.CAMERA、
 allowEdit:true、
 encodingType:Camera.EncodingType.JPEG、
 targetWidth:300、
 targetHeight:300、
 popoverOptions:CameraPopoverOptions、
 saveToPhotoAlbum:false 
}; 
 
 $ cordovaCamera.getPicture(options).then(関数(imageData){
 imgURI = "data:image/jpeg; base64、" + imageData; 
 imgBBDD = imageData; 
}、function(err){
 //エラーが発生しました。ユーザーにメッセージを表示します
 }); 
} 
 

そして今、私たちはimgBBDDをSqlLiteに入れました

 
 function saveImage = function(theId、theimage){
 var insertQuery = "INSERT INTO images(id、image)VALUES(" + theId + "、 '" + theimage + "' ); "
 console.log( '>>>>>>>'); 
 DDBB.SelectQuery(insertQuery)
 .then(function(result){
 console.log( "Image saved"); 
})
 .catch(function(err)
 {
 deferred.resolve(err); 
 return cb(err); 
}); 
} 
 

サーバー側(php)

 
 $ request = file_get_contents( "php:// input"); //生データを取得します
 $ dades = json_decode($ request、true); //配列として返される場合はtrue 
 
 
 if($ dades == ""){
 $ array = array(); 
 $ array ['error'] = -1; 
 $ array ['descError'] = "ファイル取得時のエラー"; 
 $ array ['logError'] = ''; 
 echo json_encode($ array); 
 exit; 
} 
 //クライアントに画像を再度送信します
 header( 'Content-Type:image/jpeg '); 
 echo' '; 
 
0
pabacu
byte[] byteArray = rs.getBytes("columnname");  

Bitmap bm = BitmapFactory.decodeByteArray(byteArray, 0 ,byteArray.length);
0
bhruguni

また、base64との間でエンコードおよびデコードを行うこともできます。

    function uncompress(str:String):ByteArray {
            import mx.utils.Base64Decoder;
            var dec:Base64Decoder = new Base64Decoder();
            dec.decode(str);
            var newByteArr:ByteArray=dec.toByteArray();        
            return newByteArr;
        }


    // Compress a ByteArray into a Base64 String.
    function compress(bytes:ByteArray):String { 
        import mx.utils.Base64Decoder; //Transform String in a ByteArray.
        import mx.utils.Base64Encoder; //Transform ByteArray in a readable string.
        var enc:Base64Encoder = new Base64Encoder();    
        enc.encodeBytes(bytes);
        return enc.drain().split("\n").join("");
    }
0
johnny