I've created an app using netbeans IDE but it is in .jar format.How do I convert it into .exe to use on individual system ?
Asked
Active
Viewed 867 times
3 Answers
1
many responses here: Compiling a java program into an executable
JSmooth .exe wrapper
JarToExe 1.8
Executor
Advanced Installer for Java - tutorial for Java applications
GCJ
Launch4J: http://launch4j.sourceforge.net/

Community
- 1
- 1

guillaume girod-vitouchkina
- 3,061
- 1
- 10
- 26
-
2Your link indicates this question should probably be flagged as a duplicate rather than answered. – Wai Ha Lee Dec 12 '15 at 11:09
1
If you need to just create a runnable file of your application, the JAR should be enough to do the job. You can export it as an executable jar with the manifest file and run it just by double cliking it.
Still if you require an exe, then you can use Launch4J
. To create an exe, create jar
file for your application using your IDE with proper MANIFEST
file packaged inside. Then launch Launch4J
and select your jar file and you should be able to create an exe easily.
For more details, take a look at this link here

Saif Asif
- 5,516
- 3
- 31
- 48