Create .exe for Java program - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:29:47Z http://stackoverflow.com/feeds/question/516399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/516399/create-exe-for-java-program 5 Create .exe for Java program Don 2009-02-05T15:34:53Z 2009-05-29T08:12:34Z <p>Hi,</p> <p>I'd like to create a Windows .exe for a Java program. Previously, I've used JEXECreator for this, but it's not entirely satisfactory because:</p> <ul> <li>The executable sometimes work on the machine on which it was created but not on others</li> <li>The program is comercial. If you use the trial version it adds a nag screen to your application.</li> </ul> <p>I don't need the generated .exe to work if Java is not installed on the target machine (in fact, I think this is impossible).</p> <p>Any recommendations?</p> <p>Cheers, Donal</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516422#516422 6 Answer by Ingo for Create .exe for Java program Ingo 2009-02-05T15:39:17Z 2009-02-05T15:39:17Z <p>If Java is installed on the target machine, there is no need to create a .exe file. A .jar file should be sufficient. </p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516429#516429 6 Answer by Jon Skeet for Create .exe for Java program Jon Skeet 2009-02-05T15:40:07Z 2009-02-05T15:40:07Z <p><a href="http://launch4j.sourceforge.net/" rel="nofollow">Launch4j</a> perhaps? Can't say I've used it myself, but it sounds like what you're after.</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516432#516432 2 Answer by tonys for Create .exe for Java program tonys 2009-02-05T15:41:13Z 2009-02-05T15:41:13Z <p>If you really want an exe Excelsior JET is a professional level product that compiles to native code:</p> <p><a href="http://www.excelsior-usa.com/jet.html" rel="nofollow">http://www.excelsior-usa.com/jet.html</a></p> <p>You can also look at JSMooth:</p> <p><a href="http://jsmooth.sourceforge.net/" rel="nofollow">http://jsmooth.sourceforge.net/</a></p> <p>And if your application is compatible with its compatible with AWT/Apache classpath then GCJ compiles to native exe.</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516504#516504 3 Answer by John T for Create .exe for Java program John T 2009-02-05T15:56:58Z 2009-02-05T15:56:58Z <p>Most of the programs that convert java applications to .exe files are just wrappers around the program, and the end user will still need the JRE installed to run it. As far as I know there aren't any converters that will make it a native executable from bytecode (There have been attempts, but if any turned out successful you would hear of them by now).</p> <p>As for wrappers, the best ones i've used (as previously suggested) are:</p> <p><a href="http://jsmooth.sourceforge.net/" rel="nofollow">JSmooth</a></p> <p>and</p> <p><a href="http://launch4j.sourceforge.net/" rel="nofollow">Launch4j</a></p> <p>best of luck!</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516558#516558 0 Answer by Greg Mattes for Create .exe for Java program Greg Mattes 2009-02-05T16:05:38Z 2009-02-05T16:05:38Z <p>The <a href="http://wrapper.tanukisoftware.org" rel="nofollow">Java Service Wrapper</a> might help you, depending on your requirements.</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516623#516623 0 Answer by Brandon DuRette for Create .exe for Java program Brandon DuRette 2009-02-05T16:22:10Z 2009-02-05T16:22:10Z <p>You could try <a href="http://www.ej-technologies.com/products/exe4j/overview.html" rel="nofollow">exe4j</a>. This is effectively what we use through its cousin <a href="http://www.ej-technologies.com/products/install4j/overview.html" rel="nofollow">install4j</a>.</p>