在运行作为 JAR 存档分发的项目时加载图像等资源
Posted
技术标签:
【中文标题】在运行作为 JAR 存档分发的项目时加载图像等资源【英文标题】:Loading resources like images while running project distributed as JAR archive 【发布时间】:2012-04-09 11:49:30 【问题描述】:我的 GUI 出现错误。尝试设置标题栏图标,然后将其包含在 Runnable JAR 中。
BufferedImage image = null;
try
image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif"));
catch (IOException e)
e.printStackTrace();
frame.setIconImage(image);
这是我得到的错误:
Exception in thread "main" java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(Unknown Source)
at GUI.<init>(GUI.java:39)
at GUI.main(GUI.java:351)
图像位于正确的目录中,“resources”文件夹是 项目文件
【问题讨论】:
我认为您需要在资源前添加/
,请检查
@Adel 谢谢你。我收到另一个错误。线程“主”java.lang.IllegalArgumentException 中的异常:输入 == null!与更改相同的错误
还要检查名称大小写,Jars 中的路径区分大小写。
使用jar tf GUI.jar
查看实际存在的内容。
@JakubZaverka 我删除了 getClassLoader()。同样的错误。也许我需要更改图像的目录,因为我删除了它。
【参考方案1】:
首先,改变这一行:
image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif"));
到这个:
image = ImageIO.read(getClass().getResource("/resources/icon.gif"));
更多信息,关于这两种方法的区别在哪里,可以在这个线程上找到 - Different ways of loading a Resource
对于 Eclipse:
How to add Images to your Resource Folder in the Project对于 NetBeans:
Handling Images in a Java GUI Application How to add Images to the Project对于 IntelliJ IDEA:
右键单击项目的 src 文件夹。选择新建 -> 包 在 New Package Dialog 下,输入包的名称,例如 resources。点击确定 右键点击资源包。选择新建 -> 包 在 New Package Dialog 下,输入包的名称,例如 images。点击确定 现在选择要添加到项目中的图像,复制它。 在 IDE 中右键单击 resources.images 包,然后选择粘贴使用最后一个链接检查现在如何在 Java 代码中访问此文件。虽然对于这个例子,一个人会使用
getClass().getResource("/resources/images/myImage.imageExtension");
按 Shift + F10,创建并运行项目。 resources and images 文件夹将在 out 文件夹内自动创建。
如果您手动操作:
How to add Images to your Project How to Use Icons A Little extra clarification,正如这个答案的第一个 代码示例。快速参考代码示例(尽管要了解更多细节,请考虑一些额外的澄清链接):
package swingtest;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.*;
/**
* Created with IntelliJ IDEA.
* User: Gagandeep Bali
* Date: 7/1/14
* Time: 9:44 AM
* To change this template use File | Settings | File Templates.
*/
public class ImageExample
private MyPanel contentPane;
private void displayGUI()
JFrame frame = new JFrame("Image Example");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
contentPane = new MyPanel();
frame.setContentPane(contentPane);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
private class MyPanel extends JPanel
private BufferedImage image;
public MyPanel()
try
image = ImageIO.read(MyPanel.class.getResource("/resources/images/planetbackground.jpg"));
catch (IOException ioe)
ioe.printStackTrace();
@Override
public Dimension getPreferredSize()
return image == null ? new Dimension(400, 300): new Dimension(image.getWidth(), image.getHeight());
@Override
protected void paintComponent(Graphics g)
super.paintComponent(g);
g.drawImage(image, 0, 0, this);
public static void main(String[] args)
Runnable runnable = new Runnable()
@Override
public void run()
new ImageExample().displayGUI();
;
EventQueue.invokeLater(runnable);
【讨论】:
@trashgod :感谢您的编辑,但如果您在我的顶部添加您的编辑,那就更好了,因为 Java Doc 以比我在我的答案,看起来像:-) @nIcEcOw:老实说,我认为你的 ASCII 艺术更清晰。 :-) @nIcEcOw 这个答案在info. page for embedded-resource 中被认为是值得一提的。 :) @AndrewThompson:很高兴知道,我的回答是提供知识:-) 谢谢。知道答案被许多人喜欢是一种美妙的感觉 :-) 将尝试以相同的有价值的输入提供更多答案,就像我对这个答案所做的那样。再次谢谢你,保持微笑:-)【参考方案2】:有一种更简单的方法可以加载图像并将其设置为框架图标:
frame.setIconImage(
new ImageIcon(getClass().getResource("/resources/icon.gif")).getImage());
仅此而已:)!您甚至不必使用 try-catch 块,因为 ImageIcon
不会抛出任何声明的异常。由于getClass().getResource()
,它可以在文件系统和 jar 中运行,具体取决于您运行应用程序的方式。
如果需要查看图片是否可用,可以查看getResource()
返回的URL是否为null
:
URL url = getClass().getResource("/resources/icon.gif");
if (url == null)
System.out.println( "Could not find image!" );
else
frame.setIconImage(new ImageIcon(url).getImage());
【讨论】:
错误...如果图像不存在则抛出空指针异常 @LasithaLakmal 怎么了?没有人说别的。如果您需要处理“丢失”的图像,答案会告诉您检查Class.getResource()
是否返回 null
。
+1 因为 ImageIcon 将与 bufferedImage 一起发挥魅力(因为它们是兄弟姐妹)【参考方案3】:
图像文件必须在您的 JAR 中的目录resources/
中,如How to Use Icons 所示,此example 表示名为images/
的目录。
【讨论】:
以上是关于在运行作为 JAR 存档分发的项目时加载图像等资源的主要内容,如果未能解决你的问题,请参考以下文章
Applet加载来自不同域的jar;从坛子加载资源(例如图像)有问题