如何访问 JAR 文件中的资源?
我有一个带有工具栏的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;
}
(图像名称将是“资源/图标1.png”等)。这在 Eclipse 中运行时工作正常。但是,当我从 Eclipse 导出可运行的 JAR 时,找不到图标。
我打开了JAR文件,资源文件夹就在那里。我已经尝试了一切,移动文件夹,更改JAR文件等,但我无法显示图标。
有谁知道我做错了什么?
(作为附带问题,是否有任何文件监视器可以使用JAR文件?当出现路径问题时,我通常只是打开FileMon以查看发生了什么,但在这种情况下,它只是显示为访问JAR文件)
谢谢。