当我在eclipse中导出可执行jar文件时,我需要获取res文件夹以便在我使用getClass().getResource()
方法时它不起作用。
当前阅读图像代码
public Image loadImage(String fileName) {
return new ImageIcon(fileName).getImage();
}
不起作用的代码
public Image loadImage(String fileName) {
return new ImageIcon(getClass().getResource(fileName).getImage();
}
答案 0 :(得分:2)
或者:
或
答案 1 :(得分:2)
我现在已经修复了问题 - 这是可行的代码
public BufferedImage loadImage(String fileName){
BufferedImage buff = null;
try {
buff = ImageIO.read(getClass().getResourceAsStream(fileName));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
return buff;
}
fileName的值只是一个图像名称,例如 BufferedImage img = loadImage(“background.png”);
谢谢大家的帮助。