List of Java Commands (in Unix shells)
java
- the Java virtual machine (JVM) for interpreting bytecode
javac
- the Java compiler (makes
.class out of .java
javah
- C stub file and header generator (for the Java native interface, JNI)
javap
- dissassembler and class inspection;
can also list class signatures
javadoc
- API documentation generator
jar
- Java ARchive tool (for
.jar files)
jarsigner
- Java ARchive sign tool
jdb
- Java DeBugger
|