gpt4 book ai didi

android - sqlite blob读写

转载 作者:搜寻专家 更新时间:2023-11-01 09:05:52 24 4
gpt4 key购买 nike

我想将一个长字符串存储到android的sqlite中。我通过以下方式将其写入 sqlite:

String content = bodytext.toString();
byte[] contentByte = content.getBytes();
Log.d("bytetoString",new String(contentByte));
String sql1 = "insert into content(id,content) values( '" + messageID
+ "','" + contentByte + "');";
db.execSQL(sql1);

我通过以下方式阅读:

String sql = "select * from content where id='" + messageID + "'";
Cursor temp = db.rawQuery(sql, null);
if (temp.moveToNext()) {
byte[] contentByte = temp.getBlob(temp.getColumnIndex("content"));
String sb = new String(contentByte);
Log.d("String",sb);
temp.close();
return sb;
}

但是,当我打印刚刚读取的字符串时。它打印出类似“[B@41431930??”的内容,有什么问题吗?

最佳答案

它是一个数组,toString() 只打印内存地址。这就是为什么您会看到 [B@41431930??

如果您想要可读的值,请使用类似java.util.Arrays.toString(contentByte)

关于android - sqlite blob读写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11894629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com