mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-30 17:33:50 +08:00
b172d97667
Custom input and output when compiling a class with the java command
366 B
366 B
java
Java Application Launcher.
- Execute a java .class file that contains a main method by using just the class name:
java {{filename}}
- Execute a .jar program:
java -jar {{filename.jar}}
- Display JDK, JRE and HotSpot versions:
java -version
- Custom input and output files. Preferably .txt files
java {{classname}} <{{inputfile}}> outputfile