我有一个带有工具栏的Java项目,工具栏上有图标。这些图标存储在名为resources /的文件夹中,因此例如路径可能是“resources / icon1.png”。此文件夹位于我的src目录中,因此在编译时,文件夹将复制到bin /
中我正在使用以下代码访问资源。
protected AbstractButton makeToolbarButton(String imageName, String actionCommand, String toolTipText,
String altText, boolean toggleButton) {
String imgLocation = imageName;
InputStream imageStream = getClass().getResourceAsStream(imgLocation);
AbstractButton button;
if (toggleButton)
button = new JToggleButton();
else
button = new JButton();
button.setActionCommand(actionCommand);
button.setToolTipText(toolTipText);
button.addActionListener(listenerClass);
if (imageStream != null) { // image found
try {
byte abyte0[] = new byte[imageStream.available()];
imageStream.read(abyte0);
(button).setIcon(new ImageIcon(Toolkit.getDefaultToolkit().createImage(abyte0)));
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
imageStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} else { // no image found
(button).setText(altText);
System.err.println("Resource not found: " + imgLocation);
}
return button;
}
(imageName将是“resources / icon1.png”等)。这在Eclipse中运行时工作正常。但是,当我从Eclipse导出可运行的JAR时,找不到图标。
我打开了JAR文件,资源文件夹就在那里。我已经尝试了一切,移动文件夹,更改JAR文件等,但我无法显示图标。
有谁知道我做错了什么?
(作为一个附带问题,是否有任何文件监视器可以使用JAR文件?当出现路径问题时,我通常只是打开FileMon来查看正在发生的事情,但它只是在这种情况下显示为访问JAR文件)
谢谢。
答案 0 :(得分:11)
我发现您的代码有两个问题:
getClass().getResourceAsStream(imgLocation);
这假设图像文件与此代码来自的类的.class文件位于同一文件夹中,而不是位于单独的资源文件夹中。试试这个:
getClass().getClassLoader().getResourceAsStream("resources/"+imgLocation);
另一个问题:
byte abyte0[] = new byte[imageStream.available()];
方法InputStream.available()
不返回流中的总字节数!它返回没有阻塞的可用字节数,这通常要少得多。
您必须编写一个循环来将字节复制到临时ByteArrayOutputStream
,直到到达流的末尾。或者,使用getResource()
和采用网址参数的createImage()
方法。
答案 1 :(得分:5)
要从JAR资源加载图像,请使用以下代码:
Toolkit tk = Toolkit.getDefaultToolkit();
URL url = getClass().getResource("path/to/img.png");
Image img = tk.createImage(url);
tk.prepareImage(img, -1, -1, null);
答案 2 :(得分:4)
How to Use Icons上的Swing教程中的部分向您展示了如何创建URL并在两个语句中读取Icon。
答案 3 :(得分:0)
例如,在NetBeans项目中,在src文件夹中创建资源文件夹。把你的图像(jpg,...)放在那里。
无论您使用ImageIO还是Toolkit(包括getResource),您都必须在图片文件的路径中包含一个前导/:
Image image = Toolkit.getDefaultToolkit().getImage(getClass().getResource("/resources/agfa_icon.jpg"));
setIconImage(image);
如果此代码在JFrame类中,则图像将作为标题栏中的图标添加到框架中。