vote up 1 vote down star

Hi, I'm using some imgages in JFrame, I have given a path to load image into panel of the frame, but when i made jar of the application its not dispalying images. Where should I place the image? How should I specify the path?

setIconImage(Toolkit.getDefaultToolkit().getImage( "D:\RFT\src\dailogBox\dump.jpg")); like this i have done.

thanks in advance

flag

3 Answers

vote up 5 vote down

First step: Put your image in a defined location in your JAR-file. If you put it into the src-folder, maybe your IDE or your build-tool will package it to the JAR automatically. Otherwise check the documentation of your IDE/build-tool, in which location you have to put it.

Second step: Access the file from your program. I assume you put it in the package (the path in your JAR) package1/package2 and the file is called dump.jpg. In that case you call:

setIconImage(Toolkit.getDefaultToolkit().getImage(getClass().getResource("/package1/package2/dump.jpg")));

getClass().getResource(...) returns an URL for a resource on your classpath. You start the path in the classpath with a '/' and use the complete path/packages to your resource, separated by '/'.

link|flag
just solved this same problem for me. Thanks :) – nedlud Sep 15 at 5:21
vote up 0 vote down

Add the image in your jar as a resource, then (assuming the jar is on your classpath), use the class loader to load it as a stream.

link|flag
can u give me an example for this? – ranjan Jul 8 at 6:37
vote up 0 vote down

There are many ways, for example make a folder called resources in your jar file and reference your images from there using a relative path....

link|flag
i have pasted image inside the source folder,how to set relative path? – ranjan Jul 8 at 6:33

Your Answer

Get an OpenID
or

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