| Package | Description |
|---|---|
| de.schlichtherle.truezip.fs.archive.zip |
The archive driver family for ZIP files.
|
| de.schlichtherle.truezip.zip |
A drop-in replacement for the classes in the package
java.util.zip for reading and writing ZIP files. |
| Modifier and Type | Class and Description |
|---|---|
class |
JarArchiveEntry
Respects the different date/time conversion in JAR files.
|
class |
ZipArchiveEntry
An adapter class to make the
ZipEntry class implement the
FsArchiveEntry interface. |
| Modifier and Type | Method and Description |
|---|---|
ZipArchiveEntry |
ZipDriver.newEntry(String name,
ZipEntry template) |
ZipArchiveEntry |
JarDriver.newEntry(String name,
ZipEntry template) |
| Constructor and Description |
|---|
JarArchiveEntry(String name,
ZipEntry template) |
ZipArchiveEntry(String name,
ZipEntry template) |
| Modifier and Type | Class and Description |
|---|---|
class |
RawZipFile<E extends ZipEntry>
Provides unsafe (raw) access to a ZIP file using unsynchronized methods and
shared
ZipEntry instances. |
class |
RawZipOutputStream<E extends ZipEntry>
Provides unsafe (raw) access to a ZIP file using unsynchronized
methods and shared
ZipEntry instances. |
interface |
ZipEntryFactory<E extends ZipEntry>
A factory for
ZipEntrys. |
interface |
ZipFileParameters<E extends ZipEntry>
Provides parameters for reading ZIP files.
|
| Modifier and Type | Field and Description |
|---|---|
private ZipEntry |
WinZipAesEntryReadOnlyFile.entry |
private ZipEntry |
WinZipAesEntryParameters.entry |
private ZipEntry |
RawZipOutputStream.entry
Current ZIP entry.
|
private ZipEntry |
Crc32CheckingInputStream.entry |
| Modifier and Type | Method and Description |
|---|---|
ZipEntry |
ZipEntry.clone() |
(package private) ZipEntry |
WinZipAesEntryParameters.getEntry() |
ZipEntry |
ZipOutputStream.getEntry(String name)
Returns a clone of the entry for the given name or
null if no
entry with this name exists. |
ZipEntry |
ZipFile.getEntry(String name)
Returns a clone of the entry for the given name or
null if no
entry with this name exists. |
ZipEntry |
DefaultZipFileParameters.newEntry(String name) |
| Modifier and Type | Method and Description |
|---|---|
Enumeration<? extends ZipEntry> |
ZipOutputStream.entries()
Deprecated.
Use
ZipOutputStream.iterator() instead. |
Enumeration<? extends ZipEntry> |
ZipFile.entries()
Enumerates clones of all entries in this ZIP file.
|
Enumeration<? extends ZipEntry> |
RawZipOutputStream.entries()
Deprecated.
Use
RawZipOutputStream.iterator() instead. |
Iterator<ZipEntry> |
ZipOutputStream.iterator()
Returns a safe iteration of clones for all entries written to this ZIP
file so far.
|
Iterator<ZipEntry> |
ZipFile.iterator()
Iterates through clones for all entries in this ZIP file.
|
| Modifier and Type | Method and Description |
|---|---|
private static int |
RawZipFile.getBufferSize(ZipEntry entry) |
InputStream |
RawZipFile.getCheckedInputStream(ZipEntry entry)
Equivalent to
getInputStream(entry.getName(), true, true) instead. |
private byte[] |
RawZipOutputStream.getCommentEncoded(ZipEntry entry) |
InputStream |
RawZipFile.getInputStream(ZipEntry entry)
Equivalent to
getInputStream(entry.getName(), null, true) instead. |
void |
RawZipOutputStream.RawOutputMethod.init(ZipEntry entry) |
void |
RawZipOutputStream.WinZipAesOutputMethod.init(ZipEntry entry) |
void |
RawZipOutputStream.BZip2OutputMethod.init(ZipEntry entry) |
void |
RawZipOutputStream.DeflaterOutputMethod.init(ZipEntry entry) |
void |
OutputMethod.init(ZipEntry entry)
Checks the given
entry and updates it. |
void |
DecoratingOutputMethod.init(ZipEntry entry) |
private OutputMethod |
RawZipOutputStream.newOutputMethod(ZipEntry entry,
boolean process)
Returns a new output method for the given entry.
|
void |
ZipOutputStream.putNextEntry(ZipEntry entry,
boolean process) |
private boolean |
RawZipOutputStream.writeCentralFileHeader(ZipEntry entry)
Writes a Central File Header record.
|
| Constructor and Description |
|---|
Crc32CheckingInputStream(InputStream in,
ZipEntry entry,
int size) |
WinZipAesEntryParameters(WinZipAesParameters param,
ZipEntry entry) |
ZipEntry(String name,
ZipEntry template)
Constructs a new ZIP entry with the given name and all other properties
copied from the given template.
|
Copyright © 2004-2011 Schlichtherle IT Services. All Rights Reserved.