0

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 ?

3 Answers3

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
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
0

You can use launch4j this can make jar an exe

Albert Bos
  • 2,012
  • 1
  • 15
  • 26