Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having a error for my GUI. Trying to set title bar icon then be included in a Runnable JAR.

        BufferedImage image = null;
        try 
        {
            image = ImageIO.read(getClass().getClassLoader().getResource("resources/icon.gif"));
        } 
        catch (IOException e) 
        {
            e.printStackTrace();
        }

        frame.setIconImage(image);

Here is the error I am getting:

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)

The image is in the correct directory which "resources" folder is the root of the project file

share|improve this question
I think you need a / in front of resources, check that please – Adel Mar 25 '12 at 21:35
1  
@Adel Thanks for that. I am receiving another error. Exception in thread "main" java.lang.IllegalArgumentException: input == null! Same error with change – exlux15 Mar 25 '12 at 21:37
2  
Try remove .getClassLoader() – Jakub Zaverka Mar 25 '12 at 21:40
1  
And also check the name case, paths inside Jars are case sensitive. – Jakub Zaverka Mar 25 '12 at 21:41
2  
Use jar tf GUI.jar to see what's actually there. – trashgod Mar 25 '12 at 21:57
show 3 more comments

3 Answers

up vote 12 down vote accepted

First of all, change this line :

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

to this :

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

For Eclipse :

For NetBeans :

If you are doing it manually :

share|improve this answer
Thanks alot. It worked perfectly. I was using Eclipse. – exlux15 Mar 27 '12 at 3:00
@exlux15 : Hehe, You are MOST Welcome and Keep Smiling :-) – nIcE cOw Mar 27 '12 at 6:05
@trashgod : Thankx for the edit, but Better it will be, if you add your edit on top of mine, since the Java Doc explained that in a much better way than, what I did in my answer, it seems like :-) – nIcE cOw Apr 26 '12 at 17:21
@nIcEcOw: Honestly, I think your ASCII art is more legible. :-) – trashgod Apr 26 '12 at 21:18
1  
@AndrewThompson : Happy to know, that my answer, is providing the knowledge :-) Thankyou. It's a wonderful feeling, to know, that the answer is liked by many :-) Will try to provide more answers with the same valuable inputs, as I did with this answer. Thankyou again and KEEP SMILING :-) – nIcE cOw May 10 at 15:16
show 4 more comments

The image files must be in the directory resources/ in your JAR, as shown in How to Use Icons and this example for the directory named images/.

share|improve this answer

There's a much easier way to load and set an image as a frame icon:

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

And thats all :)! You don't even have to use a try-catch block because ImageIcon does not throw any declared exceptions. And due to getClass().getResource(), it works both from file system and from a jar depending how you run your application.

If you need to check whether the image is available, you can check if the URL returned by getResource() is 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());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.