I can convert a Java .class
file into a .jar
file by the following command:
jar cvf Hello.jar Hello.class
Now I want to convert the .jar
to a Windows executable (.exe).
Is there any similar command or any command line tool to do this?
I am developing an automatic tool to compile the .class file to an .exe without any human intervention so GUI-based tools will not work.