Hi, I have a tiny question. How do I compile java not as bit code: .class
but as an executable file(machine code)
It is just that I don't even know how to use it to get .jar...
Thanks
Printable View
Hi, I have a tiny question. How do I compile java not as bit code: .class
but as an executable file(machine code)
It is just that I don't even know how to use it to get .jar...
Thanks
It compiles into a byte code that is ran by the JVM on the platform you are running it on.
You can use .bat or .com files to make dos programs that actually launch and run the java using command line codes inside of them.
Greetings.