- java.lang.Object
- java.io.InputStream
- java.io.FilterInputStream
- java.util.zip.InflaterInputStream
- java.util.zip.ZipInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
JarInputStream
public classZipInputStreamextendsInflaterInputStream
This class implements an input stream filter for reading files in the ZIP file format. Includes support for both compressed and uncompressed entries.- Since:
- 1.1
Field Summary
Fields Modifier and Type Field Description static intCENATTstatic intCENATXstatic intCENCOMstatic intCENCRCstatic intCENDSKstatic intCENEXTstatic intCENFLGstatic intCENHDRstatic intCENHOWstatic intCENLENstatic intCENNAMstatic intCENOFFstatic longCENSIGstatic intCENSIZstatic intCENTIMstatic intCENVEMstatic intCENVERstatic intENDCOMstatic intENDHDRstatic intENDOFFstatic longENDSIGstatic intENDSIZstatic intENDSUBstatic intENDTOTstatic intEXTCRCstatic intEXTHDRstatic intEXTLENstatic longEXTSIGstatic intEXTSIZstatic intLOCCRCstatic intLOCEXTstatic intLOCFLGstatic intLOCHDRstatic intLOCHOWstatic intLOCLENstatic intLOCNAMstatic longLOCSIGstatic intLOCSIZstatic intLOCTIMstatic intLOCVERFields declared in class java.util.zip.InflaterInputStream
buf,inf,len
Fields declared in class java.io.FilterInputStream
in
Constructor Summary
Constructors Constructor Description ZipInputStream(InputStream in)Creates a new ZIP input stream.ZipInputStream(InputStream in,Charset charset)Creates a new ZIP input stream.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Returns 0 after EOF has reached for the current entry data, otherwise always return 1.voidclose()Closes this input stream and releases any system resources associated with the stream.voidcloseEntry()Closes the current ZIP entry and positions the stream for reading the next entry.protectedZipEntrycreateZipEntry(String name)Creates a newZipEntryobject for the specified entry name.ZipEntrygetNextEntry()Reads the next ZIP file entry and positions the stream at the beginning of the entry data.intread(byte[] b, int off, int len)Reads from the current ZIP entry into an array of bytes.longskip(long n)Skips specified number of bytes in the current ZIP entry.Methods declared in class java.util.zip.InflaterInputStream
fill,mark,markSupported,read,reset
Methods declared in class java.io.FilterInputStream
read
Methods declared in class java.io.InputStream
nullInputStream,readAllBytes,readNBytes,readNBytes,transferTo
Field Detail
LOCSIG
public static final long LOCSIG
- See Also:
- Constant Field Values
EXTSIG
public static final long EXTSIG
- See Also:
- Constant Field Values
CENSIG
public static final long CENSIG
- See Also:
- Constant Field Values
ENDSIG
public static final long ENDSIG
- See Also:
- Constant Field Values
LOCHDR
public static final int LOCHDR
- See Also:
- Constant Field Values
EXTHDR
public static final int EXTHDR
- See Also:
- Constant Field Values
CENHDR
public static final int CENHDR
- See Also:
- Constant Field Values
ENDHDR
public static final int ENDHDR
- See Also:
- Constant Field Values
LOCVER
public static final int LOCVER
- See Also:
- Constant Field Values
LOCFLG
public static final int LOCFLG
- See Also:
- Constant Field Values
LOCHOW
public static final int LOCHOW
- See Also:
- Constant Field Values
LOCTIM
public static final int LOCTIM
- See Also:
- Constant Field Values
LOCCRC
public static final int LOCCRC
- See Also:
- Constant Field Values
LOCSIZ
public static final int LOCSIZ
- See Also:
- Constant Field Values
LOCLEN
public static final int LOCLEN
- See Also:
- Constant Field Values
LOCNAM
public static final int LOCNAM
- See Also:
- Constant Field Values
LOCEXT
public static final int LOCEXT
- See Also:
- Constant Field Values
EXTCRC
public static final int EXTCRC
- See Also:
- Constant Field Values
EXTSIZ
public static final int EXTSIZ
- See Also:
- Constant Field Values
EXTLEN
public static final int EXTLEN
- See Also:
- Constant Field Values
CENVEM
public static final int CENVEM
- See Also:
- Constant Field Values
CENVER
public static final int CENVER
- See Also:
- Constant Field Values
CENFLG
public static final int CENFLG
- See Also:
- Constant Field Values
CENHOW
public static final int CENHOW
- See Also:
- Constant Field Values
CENTIM
public static final int CENTIM
- See Also:
- Constant Field Values
CENCRC
public static final int CENCRC
- See Also:
- Constant Field Values
CENSIZ
public static final int CENSIZ
- See Also:
- Constant Field Values
CENLEN
public static final int CENLEN
- See Also:
- Constant Field Values
CENNAM
public static final int CENNAM
- See Also:
- Constant Field Values
CENEXT
public static final int CENEXT
- See Also:
- Constant Field Values
CENCOM
public static final int CENCOM
- See Also:
- Constant Field Values
CENDSK
public static final int CENDSK
- See Also:
- Constant Field Values
CENATT
public static final int CENATT
- See Also:
- Constant Field Values
CENATX
public static final int CENATX
- See Also:
- Constant Field Values
CENOFF
public static final int CENOFF
- See Also:
- Constant Field Values
ENDSUB
public static final int ENDSUB
- See Also:
- Constant Field Values
ENDTOT
public static final int ENDTOT
- See Also:
- Constant Field Values
ENDSIZ
public static final int ENDSIZ
- See Also:
- Constant Field Values
ENDOFF
public static final int ENDOFF
- See Also:
- Constant Field Values
ENDCOM
public static final int ENDCOM
- See Also:
- Constant Field Values
Constructor Detail
ZipInputStream
public ZipInputStream(InputStream in)
Creates a new ZIP input stream.The UTF-8
charsetis used to decode the entry names.- Parameters:
in- the actual input stream
ZipInputStream
public ZipInputStream(InputStream in,Charset charset)
Creates a new ZIP input stream.- Parameters:
in- the actual input streamcharset- Thecharset to be used to decode the ZIP entry name (ignored if the language encoding bit of the ZIP entry's general purpose bit flag is set).- Since:
- 1.7
Method Detail
getNextEntry
public ZipEntry getNextEntry() throwsIOException
Reads the next ZIP file entry and positions the stream at the beginning of the entry data.- Returns:
- the next ZIP file entry, or null if there are no more entries
- Throws:
ZipException- if a ZIP file error has occurredIOException- if an I/O error has occurred
closeEntry
public void closeEntry() throwsIOException
Closes the current ZIP entry and positions the stream for reading the next entry.- Throws:
ZipException- if a ZIP file error has occurredIOException- if an I/O error has occurred
available
public int available() throwsIOException
Returns 0 after EOF has reached for the current entry data, otherwise always return 1.Programs should not count on this method to return the actual number of bytes that could be read without blocking.
- Overrides:
availablein classInflaterInputStream- Returns:
- 1 before EOF and 0 after EOF has reached for current entry.
- Throws:
IOException- if an I/O error occurs.
read
public int read(byte[] b, int off, int len) throwsIOException
Reads from the current ZIP entry into an array of bytes. Iflenis not zero, the method blocks until some input is available; otherwise, no bytes are read and0is returned.- Overrides:
readin classInflaterInputStream- Parameters:
b- the buffer into which the data is readoff- the start offset in the destination arrayblen- the maximum number of bytes read- Returns:
- the actual number of bytes read, or -1 if the end of the entry is reached
- Throws:
NullPointerException- ifbisnull.IndexOutOfBoundsException- ifoffis negative,lenis negative, orlenis greater thanb.length - offZipException- if a ZIP file error has occurredIOException- if an I/O error has occurred- See Also:
FilterInputStream.in
skip
public long skip(long n) throwsIOException
Skips specified number of bytes in the current ZIP entry.- Overrides:
skipin classInflaterInputStream- Parameters:
n- the number of bytes to skip- Returns:
- the actual number of bytes skipped
- Throws:
ZipException- if a ZIP file error has occurredIOException- if an I/O error has occurredIllegalArgumentException- ifn < 0
close
public void close() throwsIOException
Closes this input stream and releases any system resources associated with the stream.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInflaterInputStream- Throws:
IOException- if an I/O error has occurred- See Also:
FilterInputStream.in