8

Possible Duplicate:
Compiling a java program into an exe

Hi, I'd like to convert my java application to exe file which is not depends on a pre installed JRE file. Which tool can do so? I prefer to converty my application to a real exex file. Thanks, Eyal.

Community
  • 1
  • 1
eyal
  • 2,379
  • 7
  • 40
  • 54

1 Answers1

10

The beauty of java is that it is platform independent. So, converting it to a platform-dependent executable is a great sin: it kills the very purpose of java!

But if you're okay with that, use some thirdparty software.

Commercial:

Free:

More similar discussions are here, here, here, here and even here.

Community
  • 1
  • 1
George
  • 8,368
  • 12
  • 65
  • 106
  • 3
    Are you saying that Java doesn't have any other purpose than being platform-independent? Because if Java turns out to have some other useful property, then maybe using it for a platform-dependent solution wouldn't be as great of a sin? – Escape Velocity Feb 05 '14 at 16:50
  • 2
    Exactly. Java is a programming language, and platform-specific development is not a sin per se. Not even in a programming language that is platform independent. – bob Jan 03 '19 at 14:38