how to make java application to executables
hi frnds iam developed the java application,i need to convert the entire application into an exe which should support Linux platform.... can anyone knw the way to do this....
[181 byte] By [
83Krisha] at [2007-11-27 6:35:23]

> hi frnds iam developed the java application,i need to
> convert the entire application into an exe which
> should support Linux platform.... can anyone knw the
> way to do this....
Create an executable JAR file:
http://www.cs.princeton.edu/introcs/85application/jar/jar.html
http://java.sun.com/docs/books/tutorial/deployment/jar/
An exe that supports Linux? Wine, maybe?Just make it into an executable jar. Don't waste time trying to coax a native binary out of it, it's almost always not worth the effort
> An exe that supports Linux? Wine, maybe?> > ...It's a bit early, but I'll have a glass of white, if you insist.; )
> > An exe that supports Linux? Wine, maybe?> > > > ...> > It's a bit early, but I'll have a glass of white, if> you insist.> ; )<beams virtual glass of blue nun to prometheuzz>cheers!
> hi how to prevent the extraction of source class file
> from the jar file... is it possible... if its
> possible can u tell the way to do that....
Google for "code obfuscation", you'll find numerous tool that can "protect" teh codes.
> do u knw the tool to pack all the java class files make into
> a software that support in linnux...
Checkout the link I posted in my first reply.
Linux will not execute .exe files unless you use the package Windows Emulator, commonly known as WINE. However, compile your files to a jar file which is a cross platform form of Java executables.
Jamwaa at 2007-7-12 18:02:26 >
