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 I compare two .jar files? Both of them have compiled .class files.

I want the difference in terms of method changes, etc.

share|improve this question

7 Answers

  • Java API Compliance Checker, sample usage:

    japi-compliance-checker OLD.jar NEW.jar

  • PkgDiff, sample usage:

    pkgdiff OLD.jar NEW.jar

  • Clirr, sample usage:

    java -jar clirr-core-0.6-uber.jar -o OLD.jar -n NEW.jar

share|improve this answer
  1. Rename .jar to .zip
  2. Extract
  3. Decompile class files with jad
  4. Recursive diff
share|improve this answer
1  
It's brute force, but that's exactly the way I'd do it. (Except that I might use jar to extract the contents, instead of renaming the file and using pkunzip.) – Loadmaster Oct 6 '10 at 1:32
1  
Optionally replace step 3 with a call to javap -c to keep it to bytecode (especially if by "method changes" the OP meant changes to a method's signature). – Mark Peters Oct 6 '10 at 3:28

Extract each jar to it's own directory using the jar command with parameters xvf. i.e. 'jar xvf myjar.jar' for each jar.

Then, use the UNIX command diff to compare the two directories. This will show the differences in the directories. You can use 'diff -r dir1 dir2' two recurse and show the differences in text files in each directory(.xml, .properties, etc).

This will also show if binary class files differ. To actually compare the class files you will have to decompile them as noted by others.

share|improve this answer

Use Java Decompiler to turn the jar file into source code file, and then use WinMerge to perform comparison.

You should consult the copyright holder of the source code, to see whether it is OK to do so.

share|improve this answer

Here's an aparently free tool http://www.extradata.com/products/jarc/

share|improve this answer
Thanks. I tried this one. It produces output in XML and further processing is required to make it readable, if you have many classes in .jar – Kunal Oct 6 '10 at 0:59

Please try http://www.osjava.org/jardiff/ - tool is old and the dependency list is large. From the docs, it looks like worth trying.

share|improve this answer

I use to ZipDiff lib (have both Java and ant API).

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.