0

我正在尝试将图像与一些字符串一起输入数据库,但我的 put 方法出现以下错误:

The method put(String, String) in the type ContentValues is not applicable for the arguments (String, Byte[]) 

但是当我在教程中看到它时,它似乎和我的做法完全一样。

以下是相关代码:

private static final String DATABASE_CREATE = 
    "CREATE Table " + DATABASE_TABLE_LIST + " ( "
    + LIST_ID + " integer PRIMARY KEY Autoincrement, "
    + LIST_NAME + " text NOT NULL, "
    + LIST_ADDRESS + " text NOT NULL, " 
    + LIST_IMAGE + " BLOB );";

...

public long createItem(String name, String address, Byte[] image) {
    ContentValues initialValues = new ContentValues();
    initialValues.put(LIST_NAME, name);
    initialValues.put(LIST_ADDRESS, address);
    initialValues.put(LIST_IMAGE, image);
    return mDb.insert(DATABASE_TABLE_LIST, null, initialValues);
}

我想这可能与放置字符串和字节数组有关,但我不知道如何解决它,也无法通过谷歌搜索找到它

4

2 回答 2

2

您尝试插入一个字节数组对我来说似乎很奇怪。您的图像数据很可能是一个字节数组。由于没有用于 Byte 对象数组的 put 方法,而仅用于原始数据类型byte的数组,因此编译器不知道该做什么。

于 2012-04-15T21:13:12.930 回答
1

看这里:

http://www.tutorialforandroid.com/2009/10/how-to-insert-image-data-to-sqlite.html

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);  
    }  
}  
于 2012-04-15T20:50:39.023 回答