1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pl/common/java.md

21 lines
368 B
Markdown
Raw Normal View History

2020-04-15 18:10:26 +02:00
# java
> Java Application Launcher.
> More information: <https://java.com>.
- Execute a java .class file that contains a main method by using just the class name:
`java {{classname}}`
- Execute a .jar program:
`java -jar {{filename.jar}}`
- Display JDK, JRE and HotSpot versions:
`java -version`
- Display usage information for the java command:
`java -help`