gpt4 book ai didi

java - 有没有办法加载(使用 new File())已导入项目文件夹的图像?

转载 作者:行者123 更新时间:2023-11-30 01:52:36 25 4
gpt4 key购买 nike

如果没有图像的完整路径,我无法使用 new File() 将图像加载到 BufferedImage 对象中。

当我尝试使用 new File() 将 image.png 加载到 BufferedImage 对象中时,我面临的结果是:

  1. 成功 - 当我写下整个路径(C://Users//benja//Desktop/...)时,它工作正常
  2. 失败 - 当我写入已导入项目的图像的路径时。即使我使用 new File(...) 有没有办法让它工作?
    public class PicturePanel extends JPanel {

BufferedImage image=null;

public PicturePanel() {
try {
image = ImageIO.read(new

/*Works fine with full path: */
File("C://Users//benjamin//Desktop//Pictures//whiteFish.png"));

/*fail - throw an exception: */
//image = ImageIO.read(new
File("//RandomThingsInGui/whiteFish.png"));

} catch (IOException e) { e.printStackTrace(); }

repaint();
}

public void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(image, 0,0,500,250,null);
}

public static void main(String[] args) {
JFrame f = new JFrame();
f.add(new PicturePanel());
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f.setSize(600,400);
f.setVisible(true);
}

我需要知道是否有一种方法(以及如何)从导入的路径(我的意思是从 eclipse 内部)加载图像,或者当我使用 new File(...) 时我必须使用完整路径。

感谢各位的帮助:)

最佳答案

将“whiteFish.png”文件复制到“RandomThingsInGui”目录。你能试试这个吗?

try {
// AS-IS
//image = ImageIO.read(new File("//RandomThingsInGui/whiteFish.png"));

// TO-BE (replace '//' to '/')
image = ImageIO.read(new File("/RandomThingsInGui/whiteFish.png"));
} catch (IOException e) {
e.printStackTrace();
}

关于java - 有没有办法加载(使用 new File())已导入项目文件夹的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55576415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com