JavaFx:图像路径

时间:2019-03-10 02:28:29

标签: java image javafx file-io

我正在尝试使用JFX创建一个带有IMG的按钮。

由于某种原因,无论我尝试使用哪种路径,Eclipse似乎都找不到我的Icon.png

路径是

C:\Users\name\eclipse-workspace\project\lib\Icon.png

我尝试过

Image icon= new Image("lib\Icon.png");
Image icon= new Image("lib\\Icon.png");
Image icon= new Image("/lib/Icon.png");
Image icon= new Image("//lib//Icon.png");

new ImageView("//C:/Users/name/eclipse-workspace/project/lib/Icon.png");

 String imgpath="C:\\Users\\name\\eclipseworkspace\\project\\lib\\libIcon.png";
        try {
            BufferedImage myimg=ImageIO.read(new File(imgpath));
        } catch (IOException e) {
            e.printStackTrace();
        }

这些似乎都找不到Img ..知道为什么吗?也许我需要用Eclipse配置一些东西?

感谢帮助人员

0 个答案:

没有答案