|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.tools.zip.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.tools.zip.ZipEntry 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.
Contribution from Jim Procter (VAMSAS Library)
For the VAMSAS library, a new constructor was added to pass in existing
RandomAccessFile directly. This allows the ZIPped data input from a file
locked under the java.nio.FileChannel.Lock mechanism.
The method signatures mimic the ones of java.util.zip.ZipFile,
with a couple of exceptions:
org.apache.tools.zip.ZipEntry
instances.
| Constructor Summary | |
ZipFile(java.io.File f)
Opens the given file for reading, assuming the platform's native encoding for file names. |
|
ZipFile(java.io.File f,
java.lang.String encoding)
Opens the given file for reading, assuming the specified encoding for file names. |
|
ZipFile(java.io.RandomAccessFile rafile)
Read an archive from the given random access file |
|
ZipFile(java.io.RandomAccessFile readablearchive,
java.lang.String encoding)
Read an archive from the given random access file, assuming the specified encoding for file names. |
|
ZipFile(java.lang.String name)
Opens the given file for reading, assuming the platform's native encoding for file names. |
|
ZipFile(java.lang.String name,
java.lang.String encoding)
Opens the given file for reading, assuming the specified encoding for file names. |
|
| 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 |
protected static java.util.Date |
fromDosTime(ZipLong zipDosTime)
Convert a DOS date/time field to a Date object. |
java.lang.String |
getEncoding()
The encoding to use for filenames and the file comment. |
java.util.Enumeration |
getEntries()
Returns all entries. |
ZipEntry |
getEntry(java.lang.String name)
Returns a named entry - or null if no entry by that name
exists. |
java.io.InputStream |
getInputStream(ZipEntry ze)
Returns an InputStream for reading the contents of the given entry. |
protected java.lang.String |
getString(byte[] bytes)
Retrieve a String from the given bytes using the encoding set for this ZipFile. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public ZipFile(java.io.File f)
throws java.io.IOException
f - the archive.
java.io.IOException - if an error occurs while reading the file.
public ZipFile(java.lang.String name)
throws java.io.IOException
name - name of the archive.
java.io.IOException - if an error occurs while reading the file.
public ZipFile(java.lang.String name,
java.lang.String encoding)
throws java.io.IOException
name - name of the archive.encoding - the encoding to use for file names
java.io.IOException - if an error occurs while reading the file.
public ZipFile(java.io.File f,
java.lang.String encoding)
throws java.io.IOException
f - the archive.encoding - the encoding to use for file names
java.io.IOException - if an error occurs while reading the file.
public ZipFile(java.io.RandomAccessFile rafile)
throws java.io.IOException
rafile - the archive as a readable random access file
java.io.IOException
public ZipFile(java.io.RandomAccessFile readablearchive,
java.lang.String encoding)
throws java.io.IOException
readablearchive - the archive opened as a readable random access fileencoding - the encoding to use for file names
java.io.IOException - if an error occurs while reading the file.| Method Detail |
public java.lang.String getEncoding()
public void close()
throws java.io.IOException
java.io.IOException - if an error occurs closing the archive.public static void closeQuietly(ZipFile zipfile)
zipfile - file to close, can be nullpublic java.util.Enumeration getEntries()
ZipEntry instancespublic ZipEntry getEntry(java.lang.String name)
null if no entry by that name
exists.
name - name of the entry.
null
if not present.
public java.io.InputStream getInputStream(ZipEntry ze)
throws java.io.IOException,
java.util.zip.ZipException
ze - the entry to get the stream for.
java.io.IOException - if unable to create an input stream from the zipenty
java.util.zip.ZipException - if the zipentry has an unsupported compression methodprotected static java.util.Date fromDosTime(ZipLong zipDosTime)
zipDosTime - contains the stored DOS time.
protected java.lang.String getString(byte[] bytes)
throws java.util.zip.ZipException
bytes - the byte array to transform
java.util.zip.ZipException - if the encoding cannot be recognized.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||