如何在android中从sqlite数据库存储(位图图像​​)和检索图像? [英] How to store(bitmap image) and retrieve image from sqlite database in android?

查看:34
本文介绍了如何在android中从sqlite数据库存储(位图图像​​)和检索图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的项目中,我需要将图像存储到 sqlite 数据库中,并且还需要检索它以在我的 android 模拟器中显示.当我在解码编码字符串后直接显示它时,我使用套接字从 Java 类中获得,图像显示在那里.但是,当我使用数据类型 blob 将字符串的字节数组代码存储到 sqlite 数据库中,然后再次使用 getblob() 函数检索它时,它包含不同的值,并发生此错误:

In my project I need to store an image into a sqlite database and also need to retrieve it to show in my android emulator. When I show it directly after decoding the encoded string, which I got from Java class using sockets, the image displays there. But when I store a byte array code of the string into the sqlite database with the datatype blob and then again retrieve it by using the getblob() function it contains a different value and this error occurs:

JAVA.lang.NULLPointerException: Factory returns null.

我需要一个建议,将位图图像存储到 sqlite 数据库中,并从 sqlite 数据库中检索它.

I need a suggestion to store a bitmap image into a sqlite database and also to retrieve it from the sqlite database.

推荐答案

设置数据库

public class DatabaseHelper extends SQLiteOpenHelper {
    // Database Version
    private static final int DATABASE_VERSION = 1;

    // Database Name
    private static final String DATABASE_NAME = "database_name";

    // Table Names
    private static final String DB_TABLE = "table_image";

    // column names
    private static final String KEY_NAME = "image_name";
    private static final String KEY_IMAGE = "image_data";

    // Table create statement
    private static final String CREATE_TABLE_IMAGE = "CREATE TABLE " + DB_TABLE + "("+ 
                       KEY_NAME + " TEXT," + 
                       KEY_IMAGE + " BLOB);";

    public DatabaseHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {

        // creating table
        db.execSQL(CREATE_TABLE_IMAGE);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // on upgrade drop older tables
        db.execSQL("DROP TABLE IF EXISTS " + DB_TABLE);

        // create new table
        onCreate(db);
    }
}

插入数据库:

public void addEntry( String name, byte[] image) throws SQLiteException{
    SQLiteDatabase database = this.getWritableDatabase();
    ContentValues cv = new  ContentValues();
    cv.put(KEY_NAME,    name);
    cv.put(KEY_IMAGE,   image);
    database.insert( DB_TABLE, null, cv );
}

检索数据:

 byte[] image = cursor.getBlob(1);

注意:

  1. 在插入数据库之前,您需要先将位图图像转换为字节数组,然后使用数据库查询应用它.
  2. 从数据库中检索时,您肯定有一个图像字节数组,您需要做的是将字节数组转换回原始图像.因此,您必须使用 BitmapFactory 进行解码.

下面是一个实用类,希望能帮到你:

Below is an Utility class which I hope could help you:

public class DbBitmapUtility {

    // convert from bitmap to byte array
    public static byte[] getBytes(Bitmap bitmap) {
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(CompressFormat.PNG, 0, stream);
        return stream.toByteArray();
    }

    // convert from byte array to bitmap
    public static Bitmap getImage(byte[] image) {
        return BitmapFactory.decodeByteArray(image, 0, image.length);
    }
}


进一步阅读
如果您不熟悉如何插入和检索数据库,请查看此 教程.

这篇关于如何在android中从sqlite数据库存储(位图图像​​)和检索图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆