public class ZipFile extends Objectimplements Closeable
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. Furthermore it returns instances of org.apache.commons.compress.archivers.zip.ZipArchiveEntry instead of java.util.zip.ZipEntry.
It doesn't extend java.util.zip.ZipFile as it would have to reimplement all methods anyway. Like java.util.ZipFile, it uses RandomAccessFile under the covers and supports compressed and uncompressed entries. As of Apache Commons Compress 1.3 it also transparently supports Zip64 extensions and thus individual entries and archives larger than 4 GB or with more than 65536 entries.
The method signatures mimic the ones of java.util.zip.ZipFile, with a couple of exceptions:
org.apache.commons.compress.archivers.zip.ZipArchiveEntry instances.| Constructor and Description |
|---|
ZipFile(File
Opens the given file for reading, assuming "UTF8" for file names.
|
ZipFile(File
Opens the given file for reading, assuming the specified encoding for file names and scanning for unicode extra fields.
|
ZipFile(File
Opens the given file for reading, assuming the specified encoding for file names.
|
ZipFile(String
Opens the given file for reading, assuming "UTF8".
|
ZipFile(String
Opens the given file for reading, assuming the specified encoding for file names, scanning unicode extra fields.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
canReadEntryData(ZipArchiveEntry
Whether this class is able to read the given entry.
|
void |
close()
Closes the archive.
|
static void |
closeQuietly(ZipFile
close a zipfile quietly; throw no io fault, do nothing on a null parameter
|
protected void |
finalize()
Ensures that the close method of this zipfile is called when there are no more references to it.
|
String |
getEncoding()
The encoding to use for filenames and the file comment.
|
Enumeration |
getEntries()
Returns all entries.
|
Iterable |
getEntries(String
Returns all named entries in the same order they appear within the archive's central directory.
|
Enumeration |
getEntriesInPhysicalOrder()
Returns all entries in physical order.
|
Iterable |
getEntriesInPhysicalOrder(String
Returns all named entries in the same order their contents appear within the archive.
|
ZipArchiveEntry |
getEntry(String
Returns a named entry - or
null if no entry by that name exists.
|
InputStream |
getInputStream(ZipArchiveEntry
Returns an InputStream for reading the contents of the given entry.
|
String |
getUnixSymlink(ZipArchiveEntry
Convenience method to return the entry's content as a String if isUnixSymlink() returns true for it, otherwise returns null.
|
public ZipFile(Filef) throws IOException
f - the archive.
IOException - if an error occurs while reading the file.
public ZipFile(Stringname) throws IOException
name - name of the archive.
IOException - if an error occurs while reading the file.
public ZipFile(Stringname, String encoding) throws IOException
name - name of the archive.
encoding - the encoding to use for file names, use null for the platform's default encoding
IOException - if an error occurs while reading the file.
public ZipFile(Filef, String encoding) throws IOException
f - the archive.
encoding - the encoding to use for file names, use null for the platform's default encoding
IOException - if an error occurs while reading the file.
public ZipFile(Filef, String encoding, boolean useUnicodeExtraFields) throws IOException
f - the archive.
encoding - the encoding to use for file names, use null for the platform's default encoding
useUnicodeExtraFields - whether to use InfoZIP Unicode Extra Fields (if present) to set the file names.
IOException - if an error occurs while reading the file.
public StringgetEncoding()
public void close()
throws IOException
close in interface
Closeable
close in interface
AutoCloseable
IOException - if an error occurs closing the archive.
public static void closeQuietly(ZipFilezipfile)
zipfile - file to close, can be null
public Enumeration<ZipArchiveEntry > getEntries()
Entries will be returned in the same order they appear within the archive's central directory.
ZipArchiveEntry instances
public Enumeration<ZipArchiveEntry > getEntriesInPhysicalOrder()
Entries will be returned in the same order their contents appear within the archive.
ZipArchiveEntry instances
public ZipArchiveEntrygetEntry(String name)
null if no entry by that name exists.
If multiple entries with the same name exist the first entry in the archive's central directory by that name is returned.
name - name of the entry.
null if not present.
public Iterable<ZipArchiveEntry > getEntries(String name)
name - name of the entry.
public Iterable<ZipArchiveEntry > getEntriesInPhysicalOrder(String name)
name - name of the entry.
public boolean canReadEntryData(ZipArchiveEntryze)
May return false if it is set up to use encryption or a compression method that hasn't been implemented yet.
public InputStreamgetInputStream(ZipArchiveEntry ze) throws IOException , ZipException
ze - the entry to get the stream for.
IOException - if unable to create an input stream from the zipentry
ZipException - if the zipentry uses an unsupported feature
public StringgetUnixSymlink(ZipArchiveEntry entry) throws IOException
Convenience method to return the entry's content as a String if isUnixSymlink() returns true for it, otherwise returns null.
This method assumes the symbolic link's file name uses the same encoding that as been specified for this ZipFile.
entry - ZipArchiveEntry object that represents the symbolic link
IOException - problem with content's input stream