将图像保存到SQLITE中?

时间:2012-02-16 09:52:36

标签: android sqlite

我应该使用哪种数据类型在sqlite数据库表中存储图像?

以下是我的尝试:

@Override
public void onCreate(SQLiteDatabase db) {
    // TODO Auto-generated method stub
    db.execSQL("CREATE TABLE" + MP_TABLE_NAME + " ( " +
            BaseColumns._ID + " INTEGER PRIMARY KEY AUTOINCREMENT, " +
            " NAME TEXT, " +
            " LAT REAL, "+
            " LNG REAL,"+
            ");"
              );

}

3 个答案:

答案 0 :(得分:10)

试试这个..

使用BLOB列创建表:

CREATE TABLE storedImages (_id INTEGER PRIMARY KEY, myImage BLOB);

使用HTTP下载图像并将其存储在表中:

DefaultHttpClient mHttpClient = new DefaultHttpClient();  
HttpGet mHttpGet = new HttpGet("your image url");  
HttpResponse mHttpResponse = mHttpClient.execute(mHttpGet);  
if (mHttpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {  
    HttpEntity entity = mHttpResponse.getEntity();  
    if (entity != null) {  
        // insert to database  
        ContentValues values = new ContentValues();  
        values.put(MyBaseColumn.MyTable.ImageField, EntityUtils.toByteArray(entity));  
        getContentResolver().insert(MyBaseColumn.MyTable.CONTENT_URI, values);  
    }
 }

将BLOB加载到ImageView中:

 ImageView myImage = (ImageView) findViewById(R.id.myImage);
 byte[] bb = cursor.getBlob(cursor.getColumnIndex(MyBaseColumn.MyTable.ImageField));
 myImage.setImageBitmap(BitmapFactory.decodeByteArray(bb, 0, bb.length));

答案 1 :(得分:8)

请参阅SQLite documentation on datatypes

您可能需要BLOB类型,也称为“二进制blob”或“二进制长对象”。请注意,在SQLite数据库中存储大量内容并不一定是个好主意 - 如果您可以管理它,通常最好将图像存储在文件系统中。

答案 2 :(得分:5)

将图像保存到Sqlite是个坏主意。您应该将其路径保存到sqlite。与文本信息相比,图像的大小很大。

从sqlite保存和检索图像会很困难。

因此,我建议您将图像存储在外部文件夹中,并将其路径存储到sqlite数据库中。