java command

waldyrious/alt-syntax
Qtrain 2015-12-16 03:51:52 -05:00 committed by Igor Shubovych
parent a2fc6cc1db
commit df6c9dc308
1 changed files with 16 additions and 0 deletions

16
pages/common/java.md Normal file
View File

@ -0,0 +1,16 @@
# 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`