我在 sqlite 中设计一个数据库我按照本指南对具有三个元素(id、文本、blob 数据)的表进行 db 访问,bolb 是一个字节数组,但不幸的是,当使用此代码时:
long insertId = database.insert(MySQLiteHelper.TABLE_COMMENTS, null, values);
insertId
总是返回-1,然后有一个我不明白的错误!
表是这样的:
private static final String DATABASE_CREATE = "create table "
+ TABLE_COMMENTS + "(" + COLUMN_ID
+ " integer primary key autoincrement, " + COLUMN_COMMENT
+ " text not null,"+ MOVE + "blob" + ");";
允许我将文件中的 txt 文件转换为要插入表中的 blob 字节的算法是:( txt --> byte [] array --> blob )
public byte[] ConvertByte ()
{
byte[] b = new byte[1024];
int bytesRead =0;
byte[] dataToSave = null;
ByteArrayOutputStream bos = null;
try {
InputStream is = new FileInputStream(FileName);
bos = new ByteArrayOutputStream();
while ((bytesRead = is.read(b)) != -1) {
bos.write(b, 0, bytesRead);
}
byte[] bytes = bos.toByteArray();
dataToSave = Base64.encode(bytes, Base64.DEFAULT);
} catch (IOException e) {
Toast.makeText(getBaseContext(), e.getMessage(),
Toast.LENGTH_SHORT).show();
}
return dataToSave;
}