How to convert java program to exe file ?

Showing Answers 1 - 1 of 1 Answers

JONBON

  • Aug 9th, 2006
 

To convert java program to .exe file, we have to first complie that java program,which is generated a bytecode in the form of hexadecimal with the extension .class file. Then execute the program. For example suppose the program name is xyz . javaD:>javac xyz.java (compilation of the file which generated the bytecode or .class file)D:>java xyz ( execution of the program after the successfull compilation of xyz.java file)

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions