mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-18 23:01:20 +00:00
Update cheatsheets
This commit is contained in:
25
javap
Normal file
25
javap
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# javap
|
||||
|
||||
> Disassemble class files and list them.
|
||||
> More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/javap.html>.
|
||||
|
||||
- Disassemble and list one or more `.class` files:
|
||||
|
||||
`javap {{path/to/file1.class path/to/file2.class ...}}`
|
||||
|
||||
- Disassemble and list a built-in class file:
|
||||
|
||||
`javap java.{{package}}.{{class}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`javap -help`
|
||||
|
||||
- Display version:
|
||||
|
||||
`javap -version`
|
||||
Reference in New Issue
Block a user