logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Disassemble Java - Inspect Class Files | Online Free DevTools by Hexmos

Inspect Java class files with Javap. Disassemble bytecode and analyze code structure for debugging and reverse engineering. Free online tool, no registration required.

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

See Also