Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class
|
|
JavaDecompiler can do a good job with a jar: since 0.2.5, All files, in JAR files, are displayed.
See also the question "How do I “decompile” Java class files?". The JD-Eclipse doesn't seem to have changed since late 2009 though (see Changes). JD-Core is actively maintained. Both are the result of the fantastic work of (SO user) Emmanuel Dupuy. |
|||||||||||||||
|
|
First of all, it's worth remembering that all Java archive files ( Second, to tackle this problem I personally use several tools which handle this problem on all levels:
The advantage of all the aforementioned, is that I do not need to hold any other external tool which clutters my work environment. Everything I will ever need from one of those files can be handled inside my IDE or diffed with other files natively. |
||||
|
|
If you happen to have both a bash shell and jad:
I might be a tiny, tiny bit off with that, but it should work more or less as advertised. You should end up with |
|||
|
|
Something like:
maybe? |
|||
|
|
Insert the following into decompile.jar.sh
Ready to use, just type |
|||
|
|
|
You extract it and then use jad against the dir. |
|||
|
If you use Eclipse then consider jadclipse - http://jadclipse.sourceforge.net/wiki/index.php/Main_Page - which runs jad on any class without a source file and display it. Works very well. If you need to debug on the classfile the preferences allow for source code alignment to the line numbers in the class file. |
|||
|
|
|
A jar file is just a zip file with jar extension. You should be able to unzip(winzip) a jar just like a zip file. |
|||
|
|
|
I think the best way is to use the script. Decompiler's Archiver tool is great, it can create .java files from all of the classes in jar saving infrastructure, but it copies classes as well, so it isn't good if you wanna keep src and bin separate, because you'll have to delete all the .class files manually. Again, in archiver, deletion part can be done quite fast, if you have smaller jars - but for jars with hundreds of classes you'll end up with nightmares after the work:) |
|||
|
|
