|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.compress.archivers.zip.ZipFile
public class ZipFile
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. 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.
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 Summary | |
---|---|
ZipFile(File f)
Opens the given file for reading, assuming "UTF8" for file names. |
|
ZipFile(File f,
String encoding)
Opens the given file for reading, assuming the specified encoding for file names and scanning for unicode extra fields. |
|
ZipFile(File f,
String encoding,
boolean useUnicodeExtraFields)
Opens the given file for reading, assuming the specified encoding for file names. |
|
ZipFile(String name)
Opens the given file for reading, assuming "UTF8". |
|
ZipFile(String name,
String encoding)
Opens the given file for reading, assuming the specified encoding for file names, scanning unicode extra fields. |
Method Summary | |
---|---|
void |
close()
Closes the archive. |
static void |
closeQuietly(ZipFile zipfile)
close a zipfile quietly; throw no io fault, do nothing on a null parameter |
String |
getEncoding()
The encoding to use for filenames and the file comment. |
Enumeration |
getEntries()
Returns all entries. |
ZipArchiveEntry |
getEntry(String name)
Returns a named entry - or null if no entry by
that name exists. |
InputStream |
getInputStream(ZipArchiveEntry ze)
Returns an InputStream for reading the contents of the given entry. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ZipFile(File f) throws IOException
f
- the archive.
IOException
- if an error occurs while reading the file.public ZipFile(String name) throws IOException
name
- name of the archive.
IOException
- if an error occurs while reading the file.public ZipFile(String name, 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(File f, 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(File f, String encoding, boolean useUnicodeExtraFields) throws IOException
f
- the archive.encoding
- the encoding to use for file names, use null
for the platform's default encodinguseUnicodeExtraFields
- whether to use InfoZIP Unicode
Extra Fields (if present) to set the file names.
IOException
- if an error occurs while reading the file.Method Detail |
---|
public String getEncoding()
public void close() throws IOException
IOException
- if an error occurs closing the archive.public static void closeQuietly(ZipFile zipfile)
zipfile
- file to close, can be nullpublic Enumeration getEntries()
ZipArchiveEntry
instancespublic ZipArchiveEntry getEntry(String name)
null
if no entry by
that name exists.
name
- name of the entry.
null
if not present.public InputStream getInputStream(ZipArchiveEntry ze) throws IOException, ZipException
ze
- the entry to get the stream for.
IOException
- if unable to create an input stream from the zipenty
ZipException
- if the zipentry has an unsupported
compression method
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |