我有以下结构。我一起加入一些表来从我的SQL数据库中获取结果。我有一个实际存储BLOB图像的列。我想知道如何在变量中检索此信息,然后可以使用该变量在图形用户界面(例如摇摆窗口)中加载此图像。
这是关于我如何阅读其他字符串 - 数据库字段的代码。
ResultSet result = statement.executeQuery(SQLQuery);
ResultSetMetaData metaData = rs.getMetaData();
while (result.next())
{
for (int i = 1; i <= columnsNumber; i++)
{
String AttributeName = metaData.getColumnName(i);
String AttributeValue = result.getString(i);
if(AttributeName == "UserName")
{
String userName = AttributeValue;
}
if(AttributeName == "UserImage")
{
//code here to get the BLOB user Image.?
}
}
}
最后一个想法是如何使用给定的图片(来自文件系统)将此图像作为BOLB存储在数据库中?
干杯。
我读过关于this的内容,但我认为此实施无法帮助我。
答案 0 :(得分:0)
你去,只需整合你和我的循环:
while (resultSet.next()) {
// String name = resultSet.getString(1);
// String description = resultSet.getString(2);
File image = new File("your path");
FileOutputStream fos = new FileOutputStream(image);
byte[] buffer = new byte[1];
InputStream is = resultSet.getBinaryStream(3);
while (is.read(buffer) > 0) {
fos.write(buffer);
}
fos.close();
}
当然记得正确修改路径和InputStream is = resultSet.getBinaryStream(3);线。祝你好运!