up vote 9 down vote favorite
3
share [g+] share [fb]

I'm using NetBeans, trying to change the familiar Java coffee cup icon to a png file that I have saved in a resources directory in the jar file. I've found many different web pages that claim they have a solution, but so far none of them work.

Here's what I have at the moment (leaving out the try-catch block):

URL url = new URL("com/xyz/resources/camera.png");
Toolkit kit = Toolkit.getDefaultToolkit();
Image img = kit.createImage(url);
getFrame().setIconImage(img);

The class that contains this code is in the com.xyz package, if that makes any difference. That class also extends JFrame. This code is throwing a MalformedUrlException on the first line.

Anyone have a solution that works?

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted
java.net.URL url = ClassLoader.getSystemResource("com/xyz/resources/camera.png");

May or may not require a '/' at the front of the path.

link|improve this answer
5  
Thanks. This is a perfect example of why we need StackOverflow. I found 100 different "solutions" by googling before I posted this question and got an answer in 5 minutes. – Bill the Lizard Oct 16 '08 at 19:05
It's pretty safe to put the "/" in front. Also, it lets you take the same string and do a getResourceAsStream, which is sometimes more useful. – Daniel Spiewak Oct 16 '08 at 19:09
Wow--the power of StackOverflow! :-) – Onorio Catenacci Oct 16 '08 at 19:11
Glad to help - I'd just not one day beforehand had to do something similar :) – JeeBee Oct 17 '08 at 11:27
Hi all, I'm sorry for posting this on an old thread, but all of you seen really helpful. Where exactly do I put the code in NetBeans GUI builder? Thanks! – fred Mar 20 '11 at 15:10
feedback

Or place the image in a location relative to a class and you don't need all that package/path info in the string itself.

com.xyz.SomeClassInThisPackage.class.getResource( "resources/camera.png" );

That way if you move the class to a different package, you dont have to find all the strings, you just move the class and its resources directory.

link|improve this answer
If you use a relative path and then create a subclass in a different package, that path will no longer be valid and your code will break. Using absolute paths prevents this (e.g. "/com/xyz/resources/camera.png") – hohonuuli Nov 2 '10 at 18:28
except that my example isn't using a subclass. Its getting a resource relative to a specific class. My solution would allow the subclass to override an image as well if you used obj.getClass().getResource( "x.png" ) though. – John Gardner Nov 3 '10 at 17:53
feedback

Your Answer

 
or
required, but never shown

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