Zip Utilities that extend JDK zip classes by adding better
handling of extra fields. The utility classes also provide
access to the internal and external file attributes. These utility
classes originated in the Ant project.
Interface | Description |
---|---|
UnixStat |
Constants from stat.h on Unix systems.
|
ZipExtraField |
General format of extra field data.
|
Class | Description |
---|---|
AsiExtraField |
Adds Unix file permission and UID/GID fields as well as symbolic link
handling.
|
ExtraFieldUtils |
ZipExtraField related methods
|
UnrecognizedExtraField |
Simple placeholder for all those extra fields we don't want to deal with.
|
ZipArchive |
Archive-Implementation for Zip.
|
ZipEntry |
Extension that adds better handling of extra fields and provides access to
the internal and external file attributes.
|
ZipLong |
Utility class that represents a four byte integer with conversion rules for
the big endian byte order of ZIP files.
|
ZipOutputStream |
Reimplementation of
java.util.zip.ZipOutputStream that does handle the extended functionality of
this package, especially internal/external file attributes and extra fields
with different layouts for local file data and central directory entries. |
ZipShort |
Utility class that represents a two byte integer with conversion rules for
the big endian byte order of ZIP files.
|