Extract each jar to your directory using the jar command with xvf options. those. jar xvf myjar.jar for each jar.
Then use the UNIX diff to compare the two directories. This will show the differences in the directories. You can use diff -r dir1 dir2 two recursions and show the differences in the text files in each directory (.xml, .properties, etc.).
It will also show if binary class files are different. To really compare class files, you will have to decompile them, as others have noted.
Brian Oct. 06 '10 at 3:25 2010-10-06 03:25
source share