zipdiff
| An open source Java utility for comparing two zip files. Also suitable for JAR,
EAR, WAR and RAR files. |
zipdiff 0.4 API
| Frame Alert. This document is designed to be viewed using the frames feature.
If you see this message, you are using a non-frame-capable web client. ... |
zipdiff - Related information
| Related information. If you are interested in the zipdiff project, then you might
also be interested in the following: ... |
zipdiff - Javadoc Report
| Project Documentation. About zipdiff · Project Info · Project Reports · JavaDocs ·
JavaDoc Report · Source Xref · Change Log · Checkstyle · Metrics ... |
zipdiff - Dependencies
| Project Documentation. About zipdiff · Project Info · Mailing Lists · Project Team ·
Dependencies · Source Repository · Issue Tracking ... |
zipdiff - Tools and libraries
| Tools used by this project. Jakarta Commons CLI · Apache Ant · Apache Maven ·
Eclipse · JUnit · PMD · CVS · TortoiseCVS · Vim ... |
zipdiff - Credits
| Credits. Sean C. Sullivan - founder of the zipdiff project; James Stewart - unit
tests, improved command line options, documentation ... |
File differences
| First file: c:\a.zip Second file: c:\b.zip. Added (2 entries). zzz/foo.txt;
bar.txt. Removed (0 entries). Changed (3 entries). my.jar; my.jar/Util.class ... |
Differences xref
| 1 /* 2 * 3 * 4 */ 5 package zipdiff; 6 7 import java.util.*; 8 import
java.util.zip.ZipEntry; 9 10 /*** 11 * Used to keep track of difference between 2 zip ... |
DifferenceCalculator xref
| 1 package zipdiff; 2 3 import java.util.*; 4 import java.util.zip.ZipInputStream;
5 import java.util.zip.ZipEntry; 6 import java.util.zip. ... |