How do I compare two .jar files? Both of them have compiled .class files.
I want the difference in terms of method changes, etc.
|
How do I compare two .jar files? Both of them have compiled .class files. I want the difference in terms of method changes, etc. |
||||
|
|
|
||||
|
|
|
|
|||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Here's an aparently free tool http://www.extradata.com/products/jarc/ |
|||
|
|
Please try http://www.osjava.org/jardiff/ - tool is old and the dependency list is large. From the docs, it looks like worth trying. |
|||
|
|