I just hope isn't too much

coverage
J053Fabi0 2017-12-30 21:37:37 -07:00
parent 861cf7673b
commit 290b6268a6
1 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,11 @@
- Execute a java .class file that contains a main method by using just the class name:
`java {{filename}}`
`java {{classname}}`
- Custom input and output files. Preferably .txt files. This is useful when you dont 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:
@ -13,7 +17,3 @@
- Display JDK, JRE and HotSpot versions:
`java -version`
- Custom input and output files. Preferably .txt files:
`java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}`