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 building a java desktop application in Eclipse . And i need to either export it as a JAR and run through command prompt or export as an Executable JAR.

The project structure is

 -- src
 -- resources
 -- bin
 -- build
 -- Icon
 -- build

And after exporting it , when i try to run the jar file , the icons are not getting loaded in the interface .

Please help me out in this regard .

share|improve this question
similar question: stackoverflow.com/questions/423938/… – shift66 Jan 11 '12 at 6:49

1 Answer

up vote 1 down vote accepted

If you put the images in a resource folder instead of a normal folder, they will export.

Make a new resource folder by rightclicking your project, new, Resource Folder. Add the path you want (like 'src/java/resources') and put the images in there.

(at least, this did it for me.)

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.