1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/common/java.md
2017-12-30 21:37:37 -07:00

547 B

java

Java Application Launcher.

  • Execute a java .class file that contains a main method by using just the class name:

java {{classname}}

  • Custom input and output files. Preferably .txt files. This is useful when you don’t want to input from keyboard every time you run your class. Outputs from System.out.println(); are saved in the output file:

java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}

  • Execute a .jar program:

java -jar {{filename.jar}}

  • Display JDK, JRE and HotSpot versions:

java -version