System Grab Bag

View all TLDR pages from common (or from all pages)

javap

Disassemble one or more class files and list them. More information: https://docs.oracle.com/en/java/javase/20/docs/specs/man/javap.html.
  • Disassemble and list a .class file:
    javap {{path/to/file.class}}
  • Disassemble and list multiple .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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.