Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you batch decompile many class files?

share|improve this question

5 Answers

up vote 11 down vote accepted

JD-Gui makes your life easy, it also has an eclipse plugin

share|improve this answer
1  
JD-Gui raised the bar imho. – Billy Bob Bain Sep 5 '09 at 12:19

I've used JAD but I'm not sure if it supports the more recent changes (Update: it does not support language features introduced in java 1.5). Otherwise you might be able to write a small java app to do batch decompiling using the core of JD.

share|improve this answer
I also recommend JAD. I have been using it for long, around 2 years! – vpram86 Sep 5 '09 at 11:42
2  
and i found the latest version of JAD not support some java features. – MemoryLeak Sep 5 '09 at 11:48
I've updated my answer to include that. That leaves JD as the best option, you will have to do some programming to create a batch script unless the GUI accidentally fits your needs. – Simon Groenewolt Sep 5 '09 at 16:41

Take a look at Jode. You can disassemble .class files or complete .jars in one go. Although it claims to be up to date to an early version of Java (1.3), I've had few problems with later Java versions.

share|improve this answer

Decafe is good...

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – parvin Aug 29 '12 at 10:06

I just published a stand-alone Java Decompiler GUI (based on Jad) which you can get from Util Java Decompiler (JAD based) v1.0

This is a Windows based .NET 4.0 application, which supports the drag n'drop of *.jar files.

The code that creates that tool is a simple C# script (which you can see here: https://github.com/o2platform/O2.Platform.Scripts/tree/master/3rdParty/JAD ), so it would be easy to extend it to allow for the batch decompilation that you want to do.

It might be good to add support to the other Java decompilers, since JAD sometimes is not able to decompile some files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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