我正在使用javafx在桌面应用程序中工作。
这是我的代码。当用户单击按钮telechargerImage()
以选择图像然后我想将其保存在localhost / images中时,将调用方法uploadimage
。
请原谅我的英语。
private Image imagelog;
@FXML
private ImageView image;
@FXML
private JFXButton uploadimage;
private FileChooser fileChooser = new FileChooser();
private File file = null;
void telechargerImage(ActionEvent event) {
File file = fileChooser.showOpenDialog(stage);
if (file != null) {
imagelog = new Image(file.toURI().toString());
image.setImage(imagelog);
}
}