Hello, can anyone tell me how I can convert a .java file into .class file with an executable bytecode.
Thanks
|
|
|
|
|
|
|
After compiling it you can jar it. java -jar AppName.jar http://windowstipoftheday.blogspot.com/2005/10/setting-jar-file-association.html |
||||
|
|
|
I would suggest you read the appropriate sections in The Java Tutorial from Sun: http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html |
||
|
|
|
|
As the others stated : it's by compiling. You can use the javac command, but I'f you're new at java, I suggest you use a software for compiling your code (and IDE) such as Eclipse and it will do the job for you. |
||
|
|
|
|
A It's not exactly "conversion" - it's compilation. Suppose your file was called "herb.java", you would write (in the command prompt):
It will create a herb.class file in the current folder. It is "executable" only if it contains a
|
||||||
|
|
|
Use the javac program that comes with the JDK (visit java.sun.com if you don't have it). The installer does not automatically add javac to your system path, so you'll need to add the bin directory of the installed path to your system path before you can use it easily. |
||
|
|
|
|
To get a .class file you have to compile the .java file. The command for this is javac. The manual for this is found here (Windows) In short: javac File.java |
||
|
|
|
|
From the command line, run
|
||
|
|