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

I need it to run without having the files exported to the computer.
At the moment, my code for storing the images is:

ImageIcon icon = new ImageIcon("images\\images2.gif");

It can't just be an image since I'm adding it to a JLabel.
When I jar the entire program, it stores the image files in the jar.
When I go to run the actual problem, there are no images.

Again, I can't just leave the .jar in a folder with the images already. It has to work on a separate computer, by itself.

share|improve this question

6 Answers

You'll want to get the image via the system class loader:

URL url = ClassLoader.getSystemClassLoader().getResource("images/images2.gif");
Icon icon = new ImageIcon(url)

images is at the root of the classpath.

Note that the Java runtime will translate the separator (/) to the OS specific separator (\ for Windows).

share|improve this answer
This is the correct answer, but for some reason the system won't let me vote up, saying my vote is too old. But I currently don't have a vote for this answer... – Jorn Dec 6 '09 at 11:42

You need to access those files through class-loader... Something like this:

InputStream is = this.getClass().getClassloader().getResourceAsStream("images/image.ico");

HTH

UPD: note, that this will work both with JARed package and with plain directory structure.

share|improve this answer
Where would i go from this? eventually i add the ImageIcon to a JLabel. – tally Dec 6 '09 at 7:11
1  
You don't the "this" in front of method invocations. – Steve Kuo Dec 6 '09 at 7:41
You should change it to getResource() instead of getResourceAsStream(), since ImageIcon takes an URL, not an InputStream (as suggested by Steve). – Jorn Dec 6 '09 at 11:58

The basic issue is that the File class only knows how to work with what the underlying operating system consider a file, and a whole one.

A jar file is essentially a zip file with some extra information so you cannot use File's with that. Instead Java provides the "resource" concept which roughly translates to "a chunk of bytes or characters which we don't care where is, as long as we have them when we need them". You can ask the class loader for any resource in the class path - which is what you want here - or access it through an URL.

share|improve this answer

Try this:

ImageIcon icon = new ImageIcon(this.getClass().getClassloader().getResource("images/images2.gif"));

if that doesn't work, replace this.getClass().getClassloader() with MyClass.class where MyClass is the name of your class.

I remember having to edit this slightly to make it work in Eclipse, but when you deploy it, it works like a charm.

Edit: To make it work in Eclipse, you may need to change it to:

ImageIcon icon = new ImageIcon(this.getClass().getClassloader().getResource("bin/images/images2.gif"));

If that doesn't work, do the standard, replace this.getClass().getClassloader() with MyClass.class. If it still doesn't work, try replacing "bin" with "src". Try jar'ing it with the first way and see what happens.

share|improve this answer
Is that supposed to be a / rather than a \? – Laurence Gonsalves Dec 6 '09 at 7:01
I can't get access to a getClassLoader() function. I do have java.lang.* imported, but it doesnt help. The MyClass.class didn't work either. – tally Dec 6 '09 at 7:10
If you don't have a Class.getClassLoader() method, then you are not using a standards-conforming Java. It is never necessary to import java.lang either. I suspect that your code runs in a static context and what does not work is using "this" - as the answer says, use a class literal then. – Michael Borgwardt Dec 6 '09 at 7:48
What does putting this. in front of method invocations do (other than clutter)? – Steve Kuo Jul 14 '12 at 22:03

Here is a convenient utility class that can be used for loading image resources. The log4j logger can be removed of changed to whatever is more appropriate.

public class ResourceLoader {

    private static final Logger logger = Logger.getLogger(ResourceLoader.class);

    public static Image getImage(final String pathAndFileName) {
         try {
              return Toolkit.getDefaultToolkit().getImage(getURL(pathAndFileName));
        } catch (final Exception e) {
              logger.error(e.getMessage());
              return null;
         }
    }

    public static ImageIcon getIcon(final String pathAndFileName) {
         try {
             return new ImageIcon(getImage(pathAndFileName));
         } catch (final Exception e) {
             logger.error(e.getMessage());
             return null;
         }
    }

    public static URL getURL(final String pathAndFileName) {
         return Thread.currentThread().getContextClassLoader().getResource(pathAndFileName);
    }
}
share|improve this answer

I suppose images2.gif is inside the package images

URL imageurl = getClass().getResource("/images/images2.gif"); 
Image myPicture = Toolkit.getDefaultToolkit().getImage(imageurl);
JLabel piclabel = new JLabel(new ImageIcon( myPicture ));
piclabel.setBounds(0,0,myPicture.getWidth(null),myPicture.getHeight(null));
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.