图片未正确保存到数据库中(作为 BLOB)
我尝试将图片作为 BLOB 保存到数据库中,但它没有正确存储在数据库中。
传递的 byte[] 是正确的,有 4300 个字符,而在数据库中它只有 12 个字符。 这就是数据库中存储的内容: [B@43e7be68
这是我的 SQL_INSERT 的代码:
public boolean SQL_INSERT_PICTURE(PictureDatatype type) {
try{
this.db = openHelper.getWritableDatabase();
Log.d(TAG, "Insert picture");
System.out.println("insert picture");
db.execSQL("DELETE FROM picture " +
"where " + LinkPic + " = '" + type.getLink() + "'");
db.execSQL("INSERT OR REPLACE INTO picture " +
"( " + NamePic + ", " + LinkPic + ", " + PicturePic + ") " +
"VALUES ('" + type.getName() + "', '" + type.getLink() +"', '" +
type.getPicture() +"')");
System.out.println("size of the picture (bytearray): " + type.getPicture().length);
System.out.println("the picture: " + type.getPicture());
System.out.println("insert complete");
db.close();
return true;
}
catch(SQLException s){
System.out.println("Insert failed");
db.close();
return false;
}
}
我的问题是为什么没有正确的 byte[] 存储在数据库中或者我该怎么做? 如果您需要更多信息或代码,请告诉我。
谢谢 柯比
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用此代码将图像转换为可以存储为 BLOB 的 ByteArray:
OR
第一个选项应该始终有效。第二个选项假设每像素 32 位(ARGB_8888 格式),因此 4 个字节。如果您的位图是其他格式(例如565),则需要进行一些修改。
当您从数据库读取图像数据时,请执行以下操作:
确保在执行“create table”SQL 语句时将数据库定义为 BLOB。
Use this code to convert the image to a ByteArray that can be stored as a BLOB:
OR
First option should always work. Second option assumes 32bits-per-pixel (ARGB_8888 format) thus 4 bytes. if you're bitmap is of another format (e.g 565), it needs some modifications.
When you read the image data from the database, do it like this:
Make sure that the the database is defined as BLOB when you execute your "create table" SQL statement.
哎呀,看起来您正在尝试将 byte[] 数组传递到字符串中。
出于多种原因(安全性和性能),以这种方式组装 SQL 字符串是一个非常糟糕的主意。
请参阅这两个问题以了解准备好的语句,以及如何将值绑定到语句而无需连接 SQL:
使用java代码将图片插入数据库(sqlite)。我该怎么办?
Java异常错误 - Sqlite preparedStatement.setBlob
Ouch, that looks like you're trying to pass a byte[] array into a string.
Assembling your SQL strings in this way is a very bad idea, for multiple reasons (security and performance).
See these two questions for prepared statements, and how to bind values to the statement without having to concatenate your SQL:
insert a picture into database(sqlite) with java code. what should i do?
Java Exception Error - Sqlite preparedStatement.setBlob