作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果没有图像的完整路径,我无法使用 new File() 将图像加载到 BufferedImage 对象中。
当我尝试使用 new File() 将 image.png 加载到 BufferedImage 对象中时,我面临的结果是:
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/
我是一名优秀的程序员,十分优秀!