Executable binary  
Author Message
Alex





PostPosted: 2004-2-10 3:29:00 Top

java-programmer, Executable binary Hello java experts:

Is there any tool to make java file into executable binary? thanks in
advance


 
Andrew Thompson





PostPosted: 2004-2-10 4:59:00 Top

java-programmer >> Executable binary Alex wrote:
> Hello java experts:
>
> Is there any tool to make java file into executable binary?

If you mean 'double click launch',
then you need to add the classes
into a .jar file with a manifest.

If your project is small (<10Kb),
the on-line compiler can do it for you.
http://www.physci.org/javac.jsp

If you actually mean a 'self conteined'
Windoze executable, you might try
Roedy Green's page on native code compiler's
http://mindprod.com/jgloss/nativecompiler.html

[ you might also try Googling the groups
for 'java executable' - which will get you
many tens of thousands of hits... ]