How to convert a .java file to a .class file? -
I am new to Java I was given some .java
file and I was told If I can change them, then I can use them. This is for a game bot which I am using. They turned into a new API that I could not understand, so long as it is not implemented in the .class
files, the bot will not run
Can anyone explain to me How to convert these .java
files to fully functional .class
files
You must compile the .java
source code in the .class
byte code. Use a java compiler such as javac
from Sun's JDK or if you are using IDE as Eclipse, then there is already a compiler which will be used for .class
file (usually in the \ bin
directory.
See also
- /
javac
- /
-
- Related links for the manual page: /
Comments
Post a Comment