java disassembler decompilers - ghdrako/doc_snipets GitHub Wiki

  • http://www.javadecompilers.com/

  • javap is a disassembler - it takes a .class file and produces the class signature and JVM bytecode contained in the methods.

javac Test.java
javap -c Test

If you are interested you can also use hexdump to examine what the class file actually looks like

hexdump -C Test.class