Is there any maintained Open-Source Java Decompiler?

  • Jdec looks nice but has no community and has bugs, none of which has got fixed since 2007.
  • Dava seems to be a thesis project rather than a programming tool.
  • JReversePro shows signs of activity but has had no release since 2002
  • JODE has had no release since 2004
  • dcompiler has had no release since 2002
  • javap only shows assembly-level code
  • Soot is not really a decompiler
  • Fernflower is maintained but not open source (yet?)
  • Java Decompiler (JD) is not open source
  • DJ Java Decompiler is not open source
  • Cavaj is not open source
  • jad is not open source, and it is dead
link|improve this question

feedback

6 Answers

Would jode not be appropriate because even though there hasn't been a release since 2004, what language features have been added since then that wouldn't be able to be decompiled?

Looking on wikipedia, as long as the Java 5 features (generics, annotations et al) are supported, I don't think the class file format has have changed since then.

Hope this helps (although I am fully aware that I have answered a question with a question!)

link|improve this answer
It seems that SVN contains changes that have never been released. The last time a developer has been seen on the forum was in January 2006, more recent questions are left unanswered. Also, a bad sign is that no Linux distribution is offering packages (except Arklinux years ago). – Nicolas Raoul Apr 27 '10 at 10:04
@Raoul, I concur, not a good sign....However, given the language features chart, are there any other options released for jdk 1.5?...@Pilgrim's answer of the fernflower project looks promising and it looks like it handles generic types etc. (although not-so-promising is its <1.0 version number, but I guess thems is the breaks in the case...) – James B Apr 27 '10 at 10:13
feedback

what do you need the source code for? Unfortunately I can't release it under GPL right now, because there are still some legal questions to be solved. However if you are representing a well established company or an R&D institute, an exception would be possible.

As for the current project status: over the last months I have completely rewritten the core of the decompiler, along with fixing quite a lot of bugs and improved performance. I hope to release a binary stand-alone version in the next time, provided my other projects won't monopolize me.

P.S. Sorry, the above refers to Fernflower of course. I'm the author of it.

link|improve this answer
1  
Hi Stiver! First of all, thanks so much for your great tool! I don't really NEED the source code, but any company would be more reassured to use an open source product, rather than a product that can disappear if its owner decides. Also, it could be included in Linux distributions to make it easier to find by users. Right now, all Linux distributions lack a good decompiler. – Nicolas Raoul Apr 30 '10 at 2:01
2  
Couldn't you just run the decompiler over the decompiler's class files? – JUST MY correct OPINION Jun 5 '10 at 15:16
3  
@JUST It is a joke right? Decompiling classes does not transform a proprietary product into an Open Source product. See opensource.org – Nicolas Raoul Jul 28 '10 at 5:48
feedback

http://java.decompiler.free.fr/

it supports Java5

link|improve this answer
2  
It is not open source. Not released under any license that would look a bit open. Just a copyright notice, and a notice saying it is free for use under some conditions. – Nicolas Raoul Apr 27 '10 at 7:26
The licence of JD must be clarified, but I do not have time to do it... – Emmanuel Dupuy Apr 27 '10 at 20:31
@Emmanuel JD is a nice tool, I am sure a lot of distributions would include it and make it popular, if it were open source. The algorithm is nice, in particular inner classes, and it uses the original local variable names, both areas where fernflower performed less well (uses var1 var2 etc, and does not generate any source for the inner classes, for the same class file). I maintain a few open source projects, so if you need help with licensing I would be very glad. Since you don't want JD to be included in commercial products, I think GPL would be a safe choice :-) – Nicolas Raoul Apr 28 '10 at 1:54
feedback

You can try to contact the author of http://www.reversed-java.com/fernflower/

It is an analytical decompiler and a very good one. The author wanted to release the code under a GPL compliant license in the near future, so if you ask him, probably he will release it. Latest news on the website are from August 2009.

link|improve this answer
This decompiler is really a good one : each time JD fails, I try it. – Emmanuel Dupuy Apr 27 '10 at 20:40
feedback

I'll leave here a link to Jdec too. It's GPL'ed, the latest version 2.0 has been released 3 years ago.

Its website is quite awful and poorly maintained, nevertheless support for Java 5 is claimed (generics, annotations, other features).

link|improve this answer
+1 Nice! I will try it a bit more. – Nicolas Raoul Apr 14 '11 at 3:19
In the bug tracker, no bug has been closed since 2007. Despite the fact that there ARE bugs, including crashes that should be solved or at least discussed, which they are not. I submitted a new bug about a NullPointerException in the method parser, let's see how long before I get any feedback. – Nicolas Raoul Apr 14 '11 at 6:32
feedback

Depending on your goals, look into soot. Soot provides Java decompilers that breaks Java down into an intermediate language closer to the byte code level. The advantage is that you can always modify and recompile versus many of the other decompilers that don't always generate compilable code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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