Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
3  
View it as what? – SLaks Jan 3 at 20:34
1  
If you just want to view the binary or hex dump, you can use od – jpm Jan 3 at 20:36
just want to see the code in the .class file. – karunakar Jan 3 at 21:49

closed as not a real question by home, A--C, Charles Menguy, Soner Gönül, Dan Short Jan 3 at 23:02

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.

6 Answers

up vote 7 down vote accepted

javap -c X will show the disassembly of X.class.

share|improve this answer
using javap X -c worked ! Thanks. – karunakar Jan 3 at 23:36

less filename.class

Not sure how it will help you, unless you can read byte code...

share|improve this answer
1  
Geeee, I wanted to write that! But I think this would rather fit as a comment... – ppeterka Jan 3 at 20:35
+1 for 'unless you can read byte code' – home Jan 3 at 20:35
3  
Chuck Norris can read byte code. He can sing it too! – ppeterka Jan 3 at 20:36

You could decompile it.

To see Java source code check some decompiler. Go search for jad.

If you want to see bytecodes, just use javap which comes with the JDK.

share|improve this answer

use javap. it's a part of the standard jdk.

share|improve this answer

Read .java from .class with online decompiler

Drop Your .class or .jar on this page to see java source.

Read bytecode

javap -v com.company.package.MainClass

To understand bytecode You can use this list of mnemonics

share|improve this answer
+1 for the link to the online decompiler! – John Farrelly Jan 3 at 22:24

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...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.