All Posts programming disassemble class files and list them | javap cheat-sheeet

disassemble class files and list them | javap cheat-sheeet

· 98 words · 1 minute read

javap is a command-line to disassemble class files and list them.

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

More information: https://docs.oracle.com/en/java/javase/20/docs/specs/man/javap.html .

I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .