加载图片资源

我的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) 

该图像位于正确的目录中,“资源”文件夹是项目文件的根目录

首先,改变这一行:

 image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif")); 

对此:

 image = ImageIO.read(getClass().getResource("/resources/icon.gif")); 

有关这两种方法之间的差异的更多信息 ,可以在此线程上find – 加载资源的不同方式

对于Eclipse:

  • 如何将图像添加到项目中的资源文件夹

对于NetBeans:

  • 在Java GUI应用程序中处理图像
  • 如何将图像添加到项目

对于IntelliJ IDEA:

  • 右键单击项目的src文件夹。 select新build – >包
  • 在“ 新build包”对话框中 ,input包的名称,说资源 。 点击OK
  • 右键单击资源包 。 select新build – >包
  • 在“ 新build包”对话框中 ,键入包的名称, 图像 。 点击OK
  • 现在select要添加到项目中的图像,将其复制。 右键单击 IDE中的 resources.images包 ,然后select粘贴
  • 使用最后一个链接来检查如何在Java代码中访问此文件。 虽然对于这个例子,一个会使用

    getClass().getResource("/resourceshttp://img.dovov.commyImage.imageExtension");

  • 按下Shift + F10可以build立并运行项目。 资源和图像文件夹将在out文件夹内自动创build。

如果你正在手动进行:

  • 如何将图像添加到您的项目
  • 如何使用图标
  • 这个答案的第一个代码示例中给出了一些额外的说明

快速参考代码示例(尽pipe更多的细节请考虑,稍微额外的说明链接):

 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("/resourceshttp://img.dovov.complanetbackground.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); } } 

映像文件必须位于JAR中的目录resources/中,如“ 如何使用图标”所示 ,此示例显示名为images/的目录。

加载和设置一个图像作为一个框架图标有一个更简单的方法

 frame.setIconImage( new ImageIcon(getClass().getResource("/resources/icon.gif")).getImage()); 

就这样 :)! 您甚至不必使用try-catch块,因为ImageIcon不会抛出任何声明的exception。 而由于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());