What is the best software to decompile a java class file?

How can you decompile many class files?

+2
java decompiler
source share
4 answers

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

+11
source share

I used JAD , but I'm not sure if it supports the latest changes (Update: it does not support the language functions introduced in java 1.5). Otherwise, you can write a small java application for batch decompilation using the JD kernel.

+9
source share

Take a look at Jode . You can parse .class files or populate .jars at a time. Although he claims to be upgraded to an earlier version of Java (1.3), I had some problems with later versions of Java.

0
source share

I just published the standalone Java Decompiler (Jad based) GUI, which you can get from Util Java Decompiler (JAD based) v1.0

This is a Windows-based .NET 4.0 application that supports drag n'drop * .jar files.

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

It might be nice to add support to other Java decompilers, as JAD sometimes cannot decompile some files.

0
source share

All Articles