I need to batch decompile many class files.
+8
A:
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.
Simon Groenewolt
2009-09-05 11:14:26
I also recommend JAD. I have been using it for long, around 2 years!
Aviator
2009-09-05 11:42:58
and i found the latest version of JAD not support some java features.
MemoryLeak
2009-09-05 11:48:39
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
2009-09-05 16:41:15
A:
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.
Brian Agnew
2009-09-05 11:44:40