将图像加载到 ImageView JavaFX

Fil*_*ipR 4 java javafx javafx-2

我想在对话框窗口中显示图像(保存在项目文件夹中),但是当我运行我的方法 showDialogWithImage 时,我得到 FileNotFoundExcpetion: imgs\pic1.jpg(系统找不到指定的文件),尽管图像位于那里。

我也尝试过以这种方式加载图像:
Image image = new Image(getClass().getResourceAsStream(path));,但遇到了同样的问题。

是否有其他一些可能性将图像加载到 ImageView ?
谢谢你的帮助!

  • 我的 Java 代码位于项目文件夹中的 src\myProject\gui 中。

  • path="imgs\pic1.jpg" // imgs 位于项目文件夹中

public void showDialogWithImage(String path) {
        final Stage dialogStage = new Stage();

        logger.info(path);

        InputStream is = null;
        try {
            is = new FileInputStream(path); // here I get FileNotFoundException
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

        Image image = new Image(is);
        ImageView view = new ImageView();
        view.setImage(image);

        Button btnOK = new Button("OK");
        btnOK.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent event) {
                dialogStage.close();
            }
        });

        dialogStage.initModality(Modality.WINDOW_MODAL);
        dialogStage.setScene(new Scene(VBoxBuilder.create()
                .children(view, btnOK).alignment(Pos.CENTER)
                .padding(new Insets(35)).build()));
        dialogStage.show();

    }
Run Code Online (Sandbox Code Playgroud)

Pau*_*tha 5

getClass().getResourceAsStream(path)将从调用类的位置开始其文件搜索。所以通过使用这个路径"imgs\pic1.jpg",你说这是你的文件结构

src\myProject\gui\imgs\pic1.jpg
Run Code Online (Sandbox Code Playgroud)

要返回搜索,您需要在imgs. 所以

"\imgs\pic1.jpg"
Run Code Online (Sandbox Code Playgroud)

另外,我认为当您使用反斜杠作为分隔符时,您需要将其转义。所以

"\\imgs\\pic1.jpg
Run Code Online (Sandbox Code Playgroud)

或者只使用正斜杠

"/imgs/pic1.jpg
Run Code Online (Sandbox Code Playgroud)

另一种选择是使用类加载器,它将从根搜索,您不需要开始分隔符

getClass().getClassLoader().getResourceAsStream("imgs/pic1.png");
Run Code Online (Sandbox Code Playgroud)