Package | Description |
---|---|
net.java.truevfs.comp.zip |
Provides classes for reading and writing ZIP files.
|
net.java.truevfs.comp.zipdriver |
The archive driver family for ZIP files.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractZipFile<E extends ZipEntry>
Provides unsafe (raw) access to a ZIP file using shared
ZipEntry
instances. |
class |
AbstractZipOutputStream<E extends ZipEntry>
Provides unsafe (raw) access to a ZIP file using shared
ZipEntry
instances. |
interface |
ZipEntryFactory<E extends ZipEntry>
A factory for
ZipEntry s. |
interface |
ZipFileParameters<E extends ZipEntry>
Provides parameters for reading ZIP files.
|
Modifier and Type | Method and Description |
---|---|
ZipEntry |
ZipEntry.clone() |
ZipEntry |
ZipFile.entry(String name)
Returns a clone of the entry for the given
name or null
if no entry with this name exists in this ZIP file. |
ZipEntry |
ZipOutputStream.entry(String name)
Returns a clone of the entry for the given
name or null
if no entry with this name exists in this ZIP file. |
Modifier and Type | Method and Description |
---|---|
Enumeration<? extends ZipEntry> |
ZipFile.entries()
Enumerates clones of all entries in this ZIP file.
|
Iterator<ZipEntry> |
ZipFile.iterator()
Iterates through clones for all entries in this ZIP file.
|
Iterator<ZipEntry> |
ZipOutputStream.iterator()
Returns a safe iteration of clones for all entries written to this ZIP
file so far.
|
Constructor and Description |
---|
ZipEntry(String name,
ZipEntry template)
Constructs a new ZIP entry with the given name and all other properties
copied from the given template.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractZipDriverEntry
ZIP archive entries apply the date/time conversion rules as defined by
DateTimeConverter.ZIP . |
class |
JarDriverEntry
JAR driver entries apply the date/time conversion rules as defined by
DateTimeConverter.JAR . |
class |
ZipDriverEntry
ZIP driver entries apply the date/time conversion rules as defined by
DateTimeConverter.ZIP . |
Modifier and Type | Method and Description |
---|---|
JarDriverEntry |
JarDriver.newEntry(String name,
ZipEntry template) |
ZipDriverEntry |
ZipDriver.newEntry(String name,
ZipEntry template) |
abstract E |
AbstractZipDriver.newEntry(String name,
ZipEntry template)
Returns a new ZIP driver entry with the given
name and all
other properties copied from the given template. |
Constructor and Description |
---|
AbstractZipDriverEntry(String name,
ZipEntry template) |
JarDriverEntry(String name,
ZipEntry template) |
ZipDriverEntry(String name,
ZipEntry template) |
Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.