when I run my java project in eclipse by run main method it work properly.but when I create an executable jar file from that and run it, it didn't work properly.what is the reason for that.there is no error massages. my application is a swing application. in interface of the application has images.when I create the jar file and run it.some images are not loading.please help me.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by Andrew Barber♦ May 2 at 11:13
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You probably didn't create the correct manifest file to add to your JAR. You need to specify what the main class is and what the classpath will be. |
|||||||||||||||
|
java -jar path/to/your/file.jar– Pit Jun 21 '11 at 16:51