Class ZipInputStream
- All Implemented Interfaces:
- Closeable,- AutoCloseable
- Direct Known Subclasses:
- JarInputStream
 Unless otherwise noted, passing a null argument to a constructor
 or method in this class will cause a NullPointerException to be
 thrown.
 
Reading Zip File Entries
ThegetNextEntry() method is used to read the next ZIP file entry
 (Local file (LOC) header record in the ZIP format) and position the stream at
 the entry's file data. The file data may read using one of the
 ZipInputStream read methods such
 as read or readAllBytes().
 For example:
    
  Path jar = Path.of("foo.jar");
  try (InputStream is = Files.newInputStream(jar);
       ZipInputStream zis = new ZipInputStream(is)) {
      ZipEntry ze;
      while ((ze = zis.getNextEntry()) != null) {
         var bytes = zis.readAllBytes();
         System.out.printf("Entry: %s, bytes read: %s%n", ze.getName(),
                 bytes.length);
      }
  }
- API Note:
- The LOC header contains metadata about the ZIP file entry. ZipInputStreamdoes not read the Central directory (CEN) header for the entry and therefore will not have access to its metadata such as the external file attributes. ZipFile may be used when the information stored within the CEN header is required.
- Since:
- 1.1
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final intCentral directory (CEN) header internal file attributes field offset.static final intCentral directory (CEN) header external file attributes field offset.static final intCentral directory (CEN) header comment length field offset.static final intCentral directory (CEN) header uncompressed file crc-32 value field offset.static final intCentral directory (CEN) header disk number start field offset.static final intCentral directory (CEN) header extra field length field offset.static final intCentral directory (CEN) header encrypt, decrypt flags field offset.static final intCentral directory (CEN) header size in bytes (including signature).static final intCentral directory (CEN) header compression method field offset.static final intCentral directory (CEN) header uncompressed size field offset.static final intCentral directory (CEN) header filename length field offset.static final intCentral directory (CEN) header LOC header offset field offset.static final longCentral directory (CEN) header signature.static final intCentral directory (CEN) header compressed size field offset.static final intCentral directory (CEN) header modification time field offset.static final intCentral directory (CEN) header version made by field offset.static final intCentral directory (CEN) header version needed to extract field offset.static final intEnd of central directory (END) header ZIP file comment length field offset.static final intEnd of central directory (END) header size in bytes (including signature).static final intEnd of central directory (END) header offset for the first CEN header field offset.static final longEnd of central directory (END) header signature.static final intEnd of central directory (END) header central directory size in bytes field offset.static final intEnd of central directory (END) header number of entries on this disk field offset.static final intEnd of central directory (END) header total number of entries field offset.static final intExtra local (EXT) header uncompressed file crc-32 value field offset.static final intExtra local (EXT) header size in bytes (including signature).static final intExtra local (EXT) header uncompressed size field offset.static final longExtra local (EXT) header signature.static final intExtra local (EXT) header compressed size field offset.static final intLocal file (LOC) header uncompressed file crc-32 value field offset.static final intLocal file (LOC) header extra field length field offset.static final intLocal file (LOC) header general purpose bit flag field offset.static final intLocal file (LOC) header size in bytes (including signature).static final intLocal file (LOC) header compression method field offset.static final intLocal file (LOC) header uncompressed size field offset.static final intLocal file (LOC) header filename length field offset.static final longLocal file (LOC) header signature.static final intLocal file (LOC) header compressed size field offset.static final intLocal file (LOC) header modification time field offset.static final intLocal file (LOC) header version needed to extract field offset.Fields declared in class java.util.zip.InflaterInputStreambuf, inf, lenFields declared in class java.io.FilterInputStreamin
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a new ZIP input stream.ZipInputStream(InputStream in, Charset charset) Creates a new ZIP input stream.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns 0 when end of stream is detected for the current ZIP entry orcloseEntry()has been called on the current ZIP entry, otherwise returns 1.voidclose()Closes this input stream and releases any system resources associated with the stream.voidCloses the current ZIP entry and positions the stream for reading the next entry.protected ZipEntrycreateZipEntry(String name) Creates a newZipEntryobject for the specified entry name.Reads the next ZIP file entry and positions the stream at the beginning of the entry data.intread()Reads the next byte of data from the input stream for the current ZIP entry.intread(byte[] b, int off, int len) Reads the requested number of bytes from the input stream into the given byte array for the current ZIP entry returning the number of inflated bytes.byte[]Reads all remaining bytes from the input stream for the current ZIP entry.intreadNBytes(byte[] b, int off, int len) Reads the requested number of bytes from the input stream into the given byte array for the current ZIP entry returning the number of inflated bytes.byte[]readNBytes(int len) Reads up to a specified number of bytes from the input stream for the current ZIP entry.longskip(long n) Skips over and discardsnbytes of data from this input stream for the current ZIP entry.voidskipNBytes(long n) Skips over and discards exactlynbytes of data from this input stream for the current ZIP entry.longtransferTo(OutputStream out) Reads all bytes from this input stream for the current ZIP entry and writes the bytes to the given output stream in the order that they are read.Methods declared in class java.util.zip.InflaterInputStreamfill, mark, markSupported, resetMethods declared in class java.io.FilterInputStreamreadMethods declared in class java.io.InputStreamnullInputStream
- 
Field Details- 
LOCSIGstatic final long LOCSIGLocal file (LOC) header signature.- See Also:
 
- 
EXTSIGstatic final long EXTSIGExtra local (EXT) header signature.- See Also:
 
- 
CENSIGstatic final long CENSIGCentral directory (CEN) header signature.- See Also:
 
- 
ENDSIGstatic final long ENDSIGEnd of central directory (END) header signature.- See Also:
 
- 
LOCHDRstatic final int LOCHDRLocal file (LOC) header size in bytes (including signature).- See Also:
 
- 
EXTHDRstatic final int EXTHDRExtra local (EXT) header size in bytes (including signature).- See Also:
 
- 
CENHDRstatic final int CENHDRCentral directory (CEN) header size in bytes (including signature).- See Also:
 
- 
ENDHDRstatic final int ENDHDREnd of central directory (END) header size in bytes (including signature).- See Also:
 
- 
LOCVERstatic final int LOCVERLocal file (LOC) header version needed to extract field offset.- See Also:
 
- 
LOCFLGstatic final int LOCFLGLocal file (LOC) header general purpose bit flag field offset.- See Also:
 
- 
LOCHOWstatic final int LOCHOWLocal file (LOC) header compression method field offset.- See Also:
 
- 
LOCTIMstatic final int LOCTIMLocal file (LOC) header modification time field offset.- See Also:
 
- 
LOCCRCstatic final int LOCCRCLocal file (LOC) header uncompressed file crc-32 value field offset.- See Also:
 
- 
LOCSIZstatic final int LOCSIZLocal file (LOC) header compressed size field offset.- See Also:
 
- 
LOCLENstatic final int LOCLENLocal file (LOC) header uncompressed size field offset.- See Also:
 
- 
LOCNAMstatic final int LOCNAMLocal file (LOC) header filename length field offset.- See Also:
 
- 
LOCEXTstatic final int LOCEXTLocal file (LOC) header extra field length field offset.- See Also:
 
- 
EXTCRCstatic final int EXTCRCExtra local (EXT) header uncompressed file crc-32 value field offset.- See Also:
 
- 
EXTSIZstatic final int EXTSIZExtra local (EXT) header compressed size field offset.- See Also:
 
- 
EXTLENstatic final int EXTLENExtra local (EXT) header uncompressed size field offset.- See Also:
 
- 
CENVEMstatic final int CENVEMCentral directory (CEN) header version made by field offset.- See Also:
 
- 
CENVERstatic final int CENVERCentral directory (CEN) header version needed to extract field offset.- See Also:
 
- 
CENFLGstatic final int CENFLGCentral directory (CEN) header encrypt, decrypt flags field offset.- See Also:
 
- 
CENHOWstatic final int CENHOWCentral directory (CEN) header compression method field offset.- See Also:
 
- 
CENTIMstatic final int CENTIMCentral directory (CEN) header modification time field offset.- See Also:
 
- 
CENCRCstatic final int CENCRCCentral directory (CEN) header uncompressed file crc-32 value field offset.- See Also:
 
- 
CENSIZstatic final int CENSIZCentral directory (CEN) header compressed size field offset.- See Also:
 
- 
CENLENstatic final int CENLENCentral directory (CEN) header uncompressed size field offset.- See Also:
 
- 
CENNAMstatic final int CENNAMCentral directory (CEN) header filename length field offset.- See Also:
 
- 
CENEXTstatic final int CENEXTCentral directory (CEN) header extra field length field offset.- See Also:
 
- 
CENCOMstatic final int CENCOMCentral directory (CEN) header comment length field offset.- See Also:
 
- 
CENDSKstatic final int CENDSKCentral directory (CEN) header disk number start field offset.- See Also:
 
- 
CENATTstatic final int CENATTCentral directory (CEN) header internal file attributes field offset.- See Also:
 
- 
CENATXstatic final int CENATXCentral directory (CEN) header external file attributes field offset.- See Also:
 
- 
CENOFFstatic final int CENOFFCentral directory (CEN) header LOC header offset field offset.- See Also:
 
- 
ENDSUBstatic final int ENDSUBEnd of central directory (END) header number of entries on this disk field offset.- See Also:
 
- 
ENDTOTstatic final int ENDTOTEnd of central directory (END) header total number of entries field offset.- See Also:
 
- 
ENDSIZstatic final int ENDSIZEnd of central directory (END) header central directory size in bytes field offset.- See Also:
 
- 
ENDOFFstatic final int ENDOFFEnd of central directory (END) header offset for the first CEN header field offset.- See Also:
 
- 
ENDCOMstatic final int ENDCOMEnd of central directory (END) header ZIP file comment length field offset.- See Also:
 
 
- 
- 
Constructor Details- 
ZipInputStreamCreates a new ZIP input stream.The UTF-8 charsetis used to decode the entry names.- Parameters:
- in- the actual input stream
 
- 
ZipInputStreamCreates a new ZIP input stream.- Parameters:
- in- the actual input stream
- charset- The charset 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 Details- 
getNextEntryReads 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 occurred
- IOException- if an I/O error has occurred
 
- 
closeEntryCloses the current ZIP entry and positions the stream for reading the next entry.- Throws:
- ZipException- if a ZIP file error has occurred
- IOException- if an I/O error has occurred
 
- 
availableReturns 0 when end of stream is detected for the current ZIP entry orcloseEntry()has been called on the current ZIP entry, otherwise returns 1.Programs should not count on this method to return the actual number of bytes that could be read without blocking. - Overrides:
- availablein class- InflaterInputStream
- Returns:
- 0 when end of stream is detected for the current ZIP entry or
 closeEntry()has been called on the current ZIP entry, otherwise 1.
- Throws:
- IOException- if an I/O error occurs.
 
- 
readReads the next byte of data from the input stream for the current ZIP entry. This method will block until enough input is available for decompression.- Overrides:
- readin class- InflaterInputStream
- Returns:
- the byte read, or -1 if the end of the stream is reached
- Throws:
- IOException- if an I/O error has occurred
- See Also:
 
- 
readAllBytesReads all remaining bytes from the input stream for the current ZIP entry. This method blocks until all remaining bytes have been read and end of stream is detected, or an exception is thrown. This method does not close the input stream.When this stream reaches end of stream, further invocations of this method will return an empty byte array. Note that this method is intended for simple cases where it is convenient to read all bytes into a byte array. It is not intended for reading input streams with large amounts of data. If an I/O error occurs reading from the input stream, then it may do so after some, but not all, bytes have been read. Consequently, the input stream may not be at end of stream and may be in an inconsistent state. It is strongly recommended that the stream be promptly closed if an I/O error occurs. - Overrides:
- readAllBytesin class- InputStream
- Returns:
- a byte array containing the bytes read from this input stream
- Throws:
- OutOfMemoryError- if an array of the required size cannot be allocated.
- IOException- if an I/O error occurs
- Since:
- 9
 
- 
readNBytesReads up to a specified number of bytes from the input stream for the current ZIP entry. This method blocks until the requested number of bytes has been read, end of stream is detected, or an exception is thrown. This method does not close the input stream.The length of the returned array equals the number of bytes read from the stream. If lenis zero, then no bytes are read and an empty byte array is returned. Otherwise, up tolenbytes are read from the stream. Fewer thanlenbytes may be read if end of stream is encountered.When this stream reaches end of stream, further invocations of this method will return an empty byte array. Note that this method is intended for simple cases where it is convenient to read the specified number of bytes into a byte array. The total amount of memory allocated by this method is proportional to the number of bytes read from the stream which is bounded by len. Therefore, the method may be safely called with very large values oflenprovided sufficient memory is available.If an I/O error occurs reading from the input stream, then it may do so after some, but not all, bytes have been read. Consequently, the input stream may not be at end of stream and may be in an inconsistent state. It is strongly recommended that the stream be promptly closed if an I/O error occurs. - Overrides:
- readNBytesin class- InputStream
- Implementation Note:
- This method calls super.readNBytes(int len).
- Parameters:
- len- the maximum number of bytes to read
- Returns:
- a byte array containing the bytes read from this input stream
- Throws:
- OutOfMemoryError- if an array of the required size cannot be allocated.
- IOException- if an I/O error occurs
- Since:
- 11
 
- 
readNBytesReads the requested number of bytes from the input stream into the given byte array for the current ZIP entry returning the number of inflated bytes. This method blocks untillenbytes of input data have been read, end of stream is detected, or an exception is thrown. The number of bytes actually read, possibly zero, is returned. This method does not close the input stream.In the case where end of stream is reached before lenbytes have been read, then the actual number of bytes read will be returned. When this stream reaches end of stream, further invocations of this method will return zero.If lenis zero, then no bytes are read and0is returned; otherwise, there is an attempt to read up tolenbytes.The first byte read is stored into element b[off], the next one in tob[off+1], and so on. The number of bytes read is, at most, equal tolen. Let k be the number of bytes actually read; these bytes will be stored in elementsb[off]throughb[off+k-1], leaving elementsb[off+k]throughb[off+len-1]unaffected.If an I/O error occurs reading from the input stream, then it may do so after some, but not all, bytes of bhave been updated with data from the input stream. Consequently, the input stream andbmay be in an inconsistent state. It is strongly recommended that the stream be promptly closed if an I/O error occurs.- Overrides:
- readNBytesin class- InputStream
- Parameters:
- b- the byte array into which the data is read
- off- the start offset in- bat which the data is written
- len- the maximum number of bytes to read
- Returns:
- the actual number of bytes read into the buffer
- Throws:
- IndexOutOfBoundsException- If- offis negative,- lenis negative, or- lenis greater than- b.length - off
- IOException- if an I/O error occurs
- Since:
- 9
 
- 
skipNBytesSkips over and discards exactlynbytes of data from this input stream for the current ZIP entry. Ifnis zero, then no bytes are skipped. Ifnis negative, then no bytes are skipped. Subclasses may handle the negative value differently.This method blocks until the requested number of bytes has been skipped, end of file is reached, or an exception is thrown. If end of stream is reached before the stream is at the desired position, then an EOFExceptionis thrown.If an I/O error occurs, then the input stream may be in an inconsistent state. It is strongly recommended that the stream be promptly closed if an I/O error occurs. - Overrides:
- skipNBytesin class- InputStream
- Parameters:
- n- the number of bytes to be skipped.
- Throws:
- IOException- if the stream cannot be positioned properly or if an I/O error occurs.
- Since:
- 12
- See Also:
 
- 
transferToReads all bytes from this input stream for the current ZIP entry and writes the bytes to the given output stream in the order that they are read. On return, this input stream will be at end of stream. This method does not close either stream.This method may block indefinitely reading from the input stream, or writing to the output stream. The behavior for the case where the input and/or output stream is asynchronously closed, or the thread interrupted during the transfer, is highly input and output stream specific, and therefore not specified. If the total number of bytes transferred is greater than Long.MAX_VALUE, then Long.MAX_VALUEwill be returned.If an I/O error occurs reading from the input stream or writing to the output stream, then it may do so after some bytes have been read or written. Consequently, the input stream may not be at end of stream and one, or both, streams may be in an inconsistent state. It is strongly recommended that both streams be promptly closed if an I/O error occurs. - Overrides:
- transferToin class- InputStream
- Parameters:
- out- the output stream, non-null
- Returns:
- the number of bytes transferred
- Throws:
- IOException- if an I/O error occurs when reading or writing
- Since:
- 9
 
- 
readReads the requested number of bytes from the input stream into the given byte array for the current ZIP entry returning the number of inflated bytes. Iflenis not zero, the method blocks until some input is available; otherwise, no bytes are read and0is returned.If the current entry is compressed and this method returns a nonzero integer n then buf[off]throughbuf[off+n-1]contain the uncompressed data. The content of elementsbuf[off+n]throughbuf[off+len-1]is undefined, contrary to the specification of theInputStreamsuperclass, so an implementation is free to modify these elements during the inflate operation. If this method returns-1or throws an exception then the content ofbuf[off]throughbuf[off+len-1]is undefined.- Overrides:
- readin class- InflaterInputStream
- Parameters:
- b- the buffer into which the data is read
- off- the start offset in the destination array- b
- len- the maximum number of bytes read
- Returns:
- the actual number of bytes read, or -1 if the end of the entry is reached
- Throws:
- IndexOutOfBoundsException- if- offis negative,- lenis negative, or- lenis greater than- b.length - off
- ZipException- if a ZIP file error has occurred
- IOException- if an I/O error has occurred
- See Also:
 
- 
skipSkips over and discardsnbytes of data from this input stream for the current ZIP entry.- Overrides:
- skipin class- InflaterInputStream
- Parameters:
- n- the number of bytes to skip
- Returns:
- the actual number of bytes skipped
- Throws:
- ZipException- if a ZIP file error has occurred
- IOException- if an I/O error has occurred
- IllegalArgumentException- if- n < 0
- See Also:
 
- 
closeCloses this input stream and releases any system resources associated with the stream.- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- InflaterInputStream
- Throws:
- IOException- if an I/O error has occurred
- See Also:
 
- 
createZipEntry
 
-