public class ZipArchiveInputStream extends ArchiveInputStream implements InputStreamStatistics
As of Apache Commons Compress it transparently supports Zip64 extensions and thus individual entries and archives larger than 4 GB or with more than 65536 entries.
The ZipFile
class is preferred when reading from files
as ZipArchiveInputStream
is limited by not being able to
read the central directory header before returning entries. In
particular ZipArchiveInputStream
ZipFile
Constructor and Description |
---|
ZipArchiveInputStream(java.io.InputStream inputStream)
Create an instance using UTF-8 encoding
|
ZipArchiveInputStream(java.io.InputStream inputStream,
java.lang.String encoding)
Create an instance using the specified encoding
|
ZipArchiveInputStream(java.io.InputStream inputStream,
java.lang.String encoding,
boolean useUnicodeExtraFields)
Create an instance using the specified encoding
|
ZipArchiveInputStream(java.io.InputStream inputStream,
java.lang.String encoding,
boolean useUnicodeExtraFields,
boolean allowStoredEntriesWithDataDescriptor)
Create an instance using the specified encoding
|
Modifier and Type | Method and Description |
---|---|
boolean |
canReadEntryData(ArchiveEntry ae)
Whether this class is able to read the given entry.
|
void |
close() |
long |
getCompressedCount() |
ArchiveEntry |
getNextEntry()
Returns the next Archive Entry in this Stream.
|
ZipArchiveEntry |
getNextZipEntry() |
long |
getUncompressedCount() |
static boolean |
matches(byte[] signature,
int length)
Checks if the signature matches what is expected for a zip file.
|
int |
read(byte[] buffer,
int offset,
int length) |
long |
skip(long value)
Skips over and discards value bytes of data from this input
stream.
|
getBytesRead, getCount, read
public ZipArchiveInputStream(java.io.InputStream inputStream)
inputStream
- the stream to wrappublic ZipArchiveInputStream(java.io.InputStream inputStream, java.lang.String encoding)
inputStream
- the stream to wrapencoding
- the encoding to use for file names, use null
for the platform's default encodingpublic ZipArchiveInputStream(java.io.InputStream inputStream, java.lang.String encoding, boolean useUnicodeExtraFields)
inputStream
- the stream to wrapencoding
- 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.public ZipArchiveInputStream(java.io.InputStream inputStream, java.lang.String encoding, boolean useUnicodeExtraFields, boolean allowStoredEntriesWithDataDescriptor)
inputStream
- the stream to wrapencoding
- 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.allowStoredEntriesWithDataDescriptor
- whether the stream
will try to read STORED entries that use a data descriptorpublic ZipArchiveEntry getNextZipEntry() throws java.io.IOException
java.io.IOException
public ArchiveEntry getNextEntry() throws java.io.IOException
ArchiveInputStream
getNextEntry
in class ArchiveInputStream
null
if there are no more entriesjava.io.IOException
- if the next entry could not be readpublic boolean canReadEntryData(ArchiveEntry ae)
May return false if it is set up to use encryption or a compression method that hasn't been implemented yet.
canReadEntryData
in class ArchiveInputStream
ae
- the entry to testpublic int read(byte[] buffer, int offset, int length) throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public long getCompressedCount()
getCompressedCount
in interface InputStreamStatistics
public long getUncompressedCount()
getUncompressedCount
in interface InputStreamStatistics
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.InputStream
java.io.IOException
public long skip(long value) throws java.io.IOException
This implementation may end up skipping over some smaller number of bytes, possibly 0, if and only if it reaches the end of the underlying stream.
The actual number of bytes skipped is returned.
skip
in class java.io.InputStream
value
- the number of bytes to be skipped.java.io.IOException
- - if an I/O error occurs.java.lang.IllegalArgumentException
- - if value is negative.public static boolean matches(byte[] signature, int length)
signature
- the bytes to checklength
- the number of bytes to check"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"