Create .exe for Java program - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:29:47Zhttp://stackoverflow.com/feeds/question/516399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/516399/create-exe-for-java-program5Create .exe for Java programDon2009-02-05T15:34:53Z2009-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#5164226Answer by Ingo for Create .exe for Java programIngo2009-02-05T15:39:17Z2009-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#5164296Answer by Jon Skeet for Create .exe for Java programJon Skeet2009-02-05T15:40:07Z2009-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#5164322Answer by tonys for Create .exe for Java programtonys2009-02-05T15:41:13Z2009-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#5165043Answer by John T for Create .exe for Java programJohn T2009-02-05T15:56:58Z2009-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#5165580Answer by Greg Mattes for Create .exe for Java programGreg Mattes2009-02-05T16:05:38Z2009-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#5166230Answer by Brandon DuRette for Create .exe for Java programBrandon DuRette2009-02-05T16:22:10Z2009-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>