PDA

View Full Version : Executable file in Java


vineetrocks2005
24-04-2007, 04:47 PM
How to create a Executable file in JAVA or how to create a JAR file...

Please Help ??

Thank You

47shailesh
24-04-2007, 08:25 PM
have you even tried to search on google ??

casanova
26-04-2007, 11:31 PM
Use Exe4j (http://www.ej-technologies.com/products/exe4j/overview.html)

redhat
27-04-2007, 10:30 AM
Please Google it.
Also, digit provided several such softwares last year. One exists in the November 2006, DVD:rolleyes:

Digit_Dragon
27-04-2007, 11:53 AM
You can create a jar file of a java code see the link

http://en.wikipedia.org/wiki/JAR_(file_format)

In the MANIFEST.MF keep all your class files required (compiled java files) to run the program.
Then create a jar file based on the main class.

If any problem check java docs.:)