如何访问 JAR 文件中的资源?

2022-09-03 06:35:13

我有一个带有工具栏的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文件)

谢谢。


答案 1

我看到你的代码有两个问题:

getClass().getResourceAsStream(imgLocation);

这假定图像文件与此代码所属类的.class文件位于同一文件夹中,而不是位于单独的资源文件夹中。请尝试以下操作:

getClass().getClassLoader().getResourceAsStream("resources/"+imgLocation);

另一个问题:

byte abyte0[] = new byte[imageStream.available()];

该方法返回流中的总字节数!它返回可用字节数而不阻塞,这通常要少得多。InputStream.available()

您必须编写一个循环来将字节复制到临时字节,直到到达流的末尾。或者,使用 和 采用 URL 参数的方法。ByteArrayOutputStreamgetResource()createImage()


答案 2

要从 JAR 资源加载映像,请使用以下代码:

Toolkit tk = Toolkit.getDefaultToolkit();
URL url = getClass().getResource("path/to/img.png");
Image img = tk.createImage(url);
tk.prepareImage(img, -1, -1, null);