如何更新imageView中显示的图像我从数据库中设置了这个图像在imageView上从数据库获取图像的代码是…
InputStream is = resultSet.getBinaryStream("image");
OutputStream os;
os = new FileOutputStream(new File("src/sources/images/photo.jpg"));
byte[]content = new byte[1024];
int size = 0;
while((size=is.read(content))!= -1)
{
os.write(content,0,size);
}
os.close();
is.close();
image = new Image("file:src/sources/images/photo.jpg");
imageView.setImage(image);
图像保存在MySQL数据库中的BLOB类型中
现在,如果我不使用文件选择器选择任何图像,我想更新此图像并再次设置此图像请解决我的这个问题提前感谢
文件选择器代码
stage = (Stage) showScene.getScene().getWindow();
file = fileChooser.showOpenDialog(stage);
if(file != null){
image = new Image(file.getAbsoluteFile().toURI().toString(),imageView.getFitWidth(),imageView.getFitHeight(),true,true);
imageView.setImage(image);
imageView.setPreserveRatio(true);
}
fis = new FileInputStream(file); // here i got error(null pointer exception) if i try to update withouting choosing image from filechooser
我将fis传递到准备好的报表以更新并插入
您得到的是NullPointerException
,因为如果您不使用FileChooser选择文件,则file
变量将设置为null。这可以通过稍微修改if语句来解决。
file = fileChooser.showOpenDialog(stage);
if (file == null) {
file = new File("path/to/default/file")
}
image = new Image(file.getAbsoluteFile().toURI().toString(),imageView.getFitWidth(),imageView.getFitHeight(),true,true);
imageView.setImage(image);
imageView.setPreserveRatio(true);
fis = new FileInputStream(file);