org.apache.tools.zip |
|
Java Source File Name | Type | Comment |
AsiExtraField.java | Class | Adds Unix file permission and UID/GID fields as well as symbolic
link handling. |
AsiExtraFieldTest.java | Class | JUnit 3 testcases for org.apache.tools.zip.AsiExtraField. |
ExtraFieldUtils.java | Class | |
ExtraFieldUtilsTest.java | Class | JUnit 3 testcases for org.apache.tools.zip.ExtraFieldUtils. |
JarMarker.java | Class | If this extra field is added as the very first extra field of the
archive, Solaris will consider it an executable jar file. |
UnixStat.java | Interface | Constants from stat.h on Unix systems. |
UnrecognizedExtraField.java | Class | Simple placeholder for all those extra fields we don't want to deal
with. |
ZipEntry.java | Class | Extension that adds better handling of extra fields and provides
access to the internal and external file attributes. |
ZipEntryTest.java | Class | JUnit 3 testcases for org.apache.tools.zip.ZipEntry. |
ZipExtraField.java | Interface | General format of extra field data.
Extra fields usually appear twice per file, once in the local
file data and once in the central directory. |
ZipFile.java | Class | Replacement for java.util.ZipFile .
This class adds support for file name encodings other than UTF-8
(which is required to work on ZIP files created by native zip tools
and is able to skip a preamble like the one found in self
extracting archives. |
ZipLong.java | Class | Utility class that represents a four byte integer with conversion
rules for the big endian byte order of ZIP files. |
ZipLongTest.java | Class | JUnit 3 testcases for org.apache.tools.zip.ZipLong. |
ZipOutputStream.java | Class | Reimplementation of
java.util.zip.ZipOutputStreamjava.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.
This class will try to use
java.io.RandomAccessFileRandomAccessFile when you know that the output is going to go to a
file.
If RandomAccessFile cannot be used, this implementation will use
a Data Descriptor to store size and CRC information for
ZipOutputStream.DEFLATED DEFLATED entries, this means, you don't need to
calculate them yourself. |
ZipOutputStreamTest.java | Class | |
ZipShort.java | Class | Utility class that represents a two byte integer with conversion
rules for the big endian byte order of ZIP files. |
ZipShortTest.java | Class | JUnit 3 testcases for org.apache.tools.zip.ZipShort. |