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

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

share|improve this question
4  
Remember two things: 1) Copyrights exist for the source, decompiling and reusing is a bit shifty and illegal in most countries 2) Even with the fancy JavaDecompiler you won't get the original source. – Esko Mar 15 '09 at 10:20
1  
thanks, and it is a small applet and i only want view & study source code, not steal them. – StoneHeart Mar 18 '09 at 7:53
27  
Remember two more things: 1) The mere mention of a decompiler will cause the "holier than thou's" to come out and make value judgements about your motives despite having no idea what your planned use is, so be careful who you talk to. 2) The fancy JavaDecompiler will give you an excellent rendition of the code, well laid out and easy to read - missing only comments. It is astoundingly good, recovering a JAR file which had long lost source complete with variable names. Of course we don't obfuscate our in-house JAR files. – Andrew Feb 9 '10 at 3:32
2  
I've stopped by this thread so many times when I needed to study how someone accomplished something for a Bukkit plugin... That comment always leaves me with a smile. I wish I could upvote it every time I stop by. – Bob Apr 3 '12 at 19:45

9 Answers

up vote 109 down vote accepted

JavaDecompiler can do a good job with a jar: since 0.2.5, All files, in JAR files, are displayed.

http://java.decompiler.free.fr/sites/default/screenshots/screenshot1.png

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).
So its integration with latest Eclipse (3.8, 4.2+) might be problematic.

JD-Core is actively maintained.

Both are the result of the fantastic work of (SO user) Emmanuel Dupuy.

share|improve this answer
3  
fyi, java decompiler works on windows, mac and linux. – yanokwa Sep 13 '11 at 20:56
Just saved my day... since I accidently deleted my sources... – AlexS Apr 19 '12 at 11:01
@AlexS nice :) Next step: version control (stackoverflow.com/questions/59561/…) And then Continuous Integration (stackoverflow.com/questions/130592/…) – VonC Apr 19 '12 at 11:13
Anyone get the eclipse plugin to work anymore with the latest eclipse and jdk7? I tried but I get a download error. JD-Gui works but jd-eclipse seems to fail for me... – Stephane Grenier Nov 6 '12 at 6:51
1  
With Java Decompiler you can open the JAR file and go to File, Save All Sources. It saves all class files into java files =D – Akira Yamamoto Apr 2 at 22:54
show 2 more comments

First of all, it's worth remembering that all Java archive files (.jar/.war/etc...) are all basically just fancy.zip files, with a few added manifests and metadata.

Second, to tackle this problem I personally use several tools which handle this problem on all levels:

  • Jad + Jadclipse while working in IDE for decompiling .class files
  • WinRAR, my favorite compression tool natively supports Java archives (again, see first paragraph).
  • Beyond Compare, my favorite diff tool, when configured correctly can do on-the-fly comparisons between any archive file, including jars. Well worth a try.

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.

share|improve this answer
lolz i keep unzipping chrome and firefox extensions and i forgot that .jar are just zips too :) – Carter Cole Jun 29 '10 at 16:25

If you happen to have both a bash shell and jad:

JAR=(your jar file name)
unzip -d $JAR.tmp $JAR
pushd $JAR.tmp
for f in `find . -name '*.class'`; do
    jad -d $(dirname $f) -s java -lnc $f
done
popd

I might be a tiny, tiny bit off with that, but it should work more or less as advertised. You should end up with $JAR.tmp containing your decompiled files.

share|improve this answer
on ubuntu use #!/bin/bash instead of #!/bin/sh becausw pushd doesnt work for the default ubuntu shell... – mossplix Aug 19 '11 at 15:18

Something like:

jar -xf foo.jar && find . -iname "*.class" | xargs /opt/local/bin/jad -r

maybe?

share|improve this answer
I've used jad for a while and needed a quick way to extract and decompile a whole jar. Thanks, this helped immensely. – Alper Akture Jul 27 '12 at 17:50

Insert the following into decompile.jar.sh

# Usage: decompile.jar.sh some.jar [-d]

# clean target folders
function clean_target {
  rm -rf $unjar $src $jad_log
}

# clean all debug stuff
function clean_stuff {
  rm -rf $unjar $jad_log
}

# the main function
function work {
  jar=$1
  unjar=`basename $jar.unjar`
  src=`basename $jar.src`
  jad_log=jad.log

  clean_target

  unzip -q $jar -d $unjar
  jad -d $src -ff -r -lnc -o -s java $unjar/**/*.class > $jad_log 2>&1

  if [ ! $debug ]; then
    clean_stuff
  fi

  if [ -d $src ] 
    then
      echo "$jar has been decompiled to $src"
    else
      echo "Got some problems check output or run in debug mode"
  fi
}

function usage {
  echo "This script extract and decompile JAR file"
  echo "Usage: $0 some.jar [-d]"
  echo "    where: some.jar is the target to decompile"
  echo "    use -d for debug mode"
}

# check params
if [ -n "$1" ]
  then
    if [ "$2" == "-d" ]; then
      debug=true
      set -x
    fi
    work $1
  else
    usage
fi
  • chmod +x decomplie.jar.sh //executable
  • ln -s ./decomplie.jar.s /usr/bin/dj

Ready to use, just type dj your.jar and you will get your.jar.src folder with sources. Use -d option for debug mode.

share|improve this answer
Thanks, works great! – janos Mar 13 at 11:28

You extract it and then use jad against the dir.

share|improve this answer
I don't think you can just run it against the dir. You will have to specify {dir}/**/*.class – Vihung Feb 17 '12 at 4:51
Extract the jar and use something like jad {dir}, I have just tested it and doesn't work on windows – jaime Apr 15 at 19:10

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.

share|improve this answer

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.

share|improve this answer

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:)

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.