vote up 19 vote down star
10

On Java performance questions on this site I often see responses from people who have "decompiled" the Java class file to see how the compiler optimizes certain things.

What program can I use to decompile a class file? Does you actually get Java code, or is it just JVM assembly code?

Thanks!

flag

The art of "decompiling" can also be thought upon as reverse engineering. Although sometimes when reverse engineering something you don't always have access to binaries. – Makach Jun 13 at 10:53

8 Answers

vote up 31 vote down check
  • The final release of JSR 176, defining the major features of the J2SE 5.0, has been published the september 30, 2004.
  • The lastest Java version supported by JAD, the famous Java decompiler written by Mr. Pavel Kouznetsov, is JDK1.3.
  • Most of Java decompilers downloadable today from Internet, such as “DJ Java Decompiler” or “Cavaj Java Decompiler”, are powered by JAD : they can not display Java 5 sources.

Java Decompiler (Yet another Fast Java decompiler) has:

  • explicit support for decompiling and analyzing Java 5+ “.class” files.
  • a nice GUI:

link|flag
1  
Thanks for pointing this one out... it looks like a nice project, and we have needed one with solid 1.5 support for a long time. – jsight Nov 7 '08 at 16:28
vote up 2 vote down

Soot is an option for newer Java code. At least it has the advantage of still being recently maintained...

Also, Java Decompiler is a decompiler with both a stand-alone GUI and Eclipse integration.

Lastly, Jdec hasn't been mentioned, though it's not as polished as other options.

link|flag
vote up 2 vote down

Most decompilers for Java are based on JAD. It's a great tool, but unfortunately hasn't been updated for a while and does not handle Java 1.5+ classes very well. I have not seen any tools that will properly handle 1.5+ classes.

link|flag
here you go: I just posted an answer to your answer ;) JDK1.5 and more supported! – VonC Nov 7 '08 at 16:19
thanks for the info. I've never found that one when searching for newer decompilers. I'll have to try it out. – John Meagher Nov 8 '08 at 23:46
vote up 3 vote down

I use JAD Decompiler.

There is a eclipse plugin to it. pretty nice: jadeclipse

link|flag
vote up 1 vote down

There's a few programs you can use. You will get the actual Java code. Sometimes the code will have been obfuscated so method are called one letter or number or a random mix of letters and numbers.

DJ Decompiler Mocha

link|flag
vote up 5 vote down

There's a few decompilers out there... a quick search yields:

  1. JAD
  2. DJ Java Decompiler
  3. Mocha

and many more.

These produce Java code. Java comes with something that lets you see JVM byte code (javap).

link|flag
vote up 9 vote down

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.

link|flag
vote up 0 vote down

Take a look at cavaj.

link|flag
That also uses jad underneath. – Quinn Taylor Sep 18 at 23:47

Your Answer

Get an OpenID
or

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