SQLite
 sql >> Base de Dados >  >> RDS >> SQLite

Como armazenar e recuperar uma matriz de bytes (dados de imagem) de e para um banco de dados SQLite?


A matriz de bytes pode ser armazenada como tipo de dados BLOB. Não há nada de especial neste procedimento, exceto cuidados especiais com o agrupamento, como:
InputStream is = context.getResources().open(R.drawable.MyImageFile);
try {
    byte[] buffer = new byte[CHUNK_SIZE];
    int size = CHUNK_SIZE;
    while(size == CHUNK_SIZE) {
        size = is.read(buffer);  //read chunks from file
        if (size == -1) break;

        ContentValues cv = new ContentValues();
        cv.put(CHUNK, buffer);       //CHUNK blob type field of your table

        long rawId = database.insert(TABLE, null, cv); //TABLE table name
    }
} catch (Exception e) {
    Log.e(TAG, "Error saving raw image to: "+rawId, e);
}