How do I view the contents of a .class file (java byte code)?
How do I open these type of files in Linux? I'm using Centos 5.8.
How do I view the contents of a .class file (java byte code)?
How do I open these type of files in Linux? I'm using Centos 5.8.
javap -v com.company.package.MainClass
To understand bytecode You can use this list of mnemonics
less filename.class
Not sure how it will help you, unless you can read byte code...