在JavaFX中从FileChooser打开图像

时间:2017-01-30 01:45:28

标签: java javafx filechooser

我的程序应该从文件上传图像,然后将该图像显示为背景。我的问题是,当我在其参数中创建一个Image对象时,它会询问您尝试放置的文件。我试图将我的File对象放在其参数中,但它不起作用。请帮我。我被困了。

public class FileOpener extends Application{

    public void start(final Stage stage) {
        stage.setTitle("File Chooser Sample");

        final FileChooser fileChooser = new FileChooser();

        final Button openButton = new Button("Choose Background Image");
        openButton.setOnAction((final ActionEvent e) -> {
            File file = fileChooser.showOpenDialog(stage);
            if (file != null) {
               // openFile(file);

               // where my problem is 
                Image image1 = new Image("file");
                // what I tried to do
                    // Image image1 = new Image(file);
                ImageView ip = new ImageView(image1);
                BackgroundSize backgroundSize = new BackgroundSize(100, 100, true, true, true, false);
                BackgroundImage backgroundImage = new BackgroundImage(image1, BackgroundRepeat.REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.CENTER, backgroundSize);
            }
        }); 
        final StackPane stac = new StackPane();       
        stac.getChildren().add(openButton);
        stage.setScene(new Scene(stac, 500, 500));
        stage.show();
    }  

     public static void main(String[] args) {
        Application.launch(args);
    }        
}

1 个答案:

答案 0 :(得分:3)

问题是Image的构造函数期望String url,而您传递File。任何好的IDE都会告诉你给定的方法作为参数的期望;找到键盘快捷键并使用它(IntelliJ中的Ctrl + P)。在那里,您所要做的就是找到一种方法将File转换为代表其网址的String。在这种情况下:

Image image1 = new Image(file.toURI().toString());

请注意,您实际上从未设置过背景图像,需要在lambda中添加以下行:

stac.setBackground(new Background(backgroundImage));

尽管如此,您必须将stac的声明移到行动监听器之上。