vote up 2 vote down star

Im trying to export a program in eclipse to a .jar file. To my project in I have added some pictures and pdf. When im exporting to jar file, it seems that only the main has ben compiled and exported. My will is to export everything to a jar file if its possible becaus then I want to convert it to an extrakteble file, like .exe-file.

But how?

flag

Which version are you using? – Pedro Henriques Jan 8 '09 at 11:22

4 Answers

vote up 4 vote down check

No need for external plugins. In the Export JAR dialog, make sure you select all the necessary resources you want to export. By default, there should be no problem exporting other resource files as well (pictures, configuration files, etc...), see screenshot below.

alt text

link|flag
Correct, assuming the necessary resources don't include other jar files. – seanhodges Jan 8 '09 at 11:29
Is that jar executable? – Pedro Henriques Jan 8 '09 at 11:37
In my project/program, Im using a database that is created when I shut down the program. So I cant pack the database file. When I follow you direction and try to start the jar-file I get the message: Failed to load Main-Class manifest attrebute from ..._path_... – Adis Jan 8 '09 at 12:10
@Pedro - yes, the JAR can be executable, in the next view in the wizard you can choose the main class. – Yuval A Jan 8 '09 at 14:09
vote up 0 vote down

One more option is WinRun4J. There is an Eclipse Plugin for WinRun4J that allows you to export your application as a single executable with necessary jars/classes embedded.

(full disclosure: I work on this project)

link|flag
vote up 0 vote down

Go to file->export->JAR file, there you may select "Export generated class files and sources" and make sure that your project is selected, and all folder under there are also! Good luck!

link|flag
vote up 1 vote down

FatJar can help you in this case.

In addition to the"Export as Jar" function which is included to Eclipse the Plug-In bundles all dependent JARs together into one executable jar.
The Plug-In adds the Entry "Build Fat Jar" to the Context-Menu of Java-projects

This is useful if your final exported jar includes other external jars.

If you have Ganymede, the Export Jar dialog is enough to export your resources from your project.

Indeed, before Ganymede, you had:

After:

link|flag
I love FatJar! Works great. – David Jan 8 '09 at 11:35

Your Answer

Get an OpenID
or

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