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. |
|||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
|
|||
|
|
|
less filename.class Not sure how it will help you, unless you can read byte code... |
|||
|
You could decompile it. To see Java source code check some decompiler. Go search for If you want to see bytecodes, just use |
|||
|
|
Read .java from .class with online decompilerDrop Your .class or .jar on this page to see java source. Read bytecode
To understand bytecode You can use this list of mnemonics |
||||
|
|
|
Any binary file editor will do - gHex or xxd are two recommendations. Note, this won't really help you unless you can understand the bytecode given to you by the .class file... |
|||
|
|