当我在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();
}