我知道以前有人问过这样的问题,但是我已经查看并尝试了很多答案,但没有一个有效。我正在尝试在 .jar 文件中使用图像。图像存储在目录 /world/maps/map1.jpg 中。
BufferedImage bigImg;
try
{
bigImg = ImageIO.read(getClass().getResourceAsStream("/world/maps/" + name + ".jpg"));
}
catch(Exception e)
{
System.out.println(e + ": is the error");
bigImg = null;
}
谢谢您的帮助。
忘了说清楚,但类文件与图像在同一目录中