- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
JarFile
Unless otherwise noted, passing a null argument to a constructor
or method in this class will cause a NullPointerException to be
thrown.
- API Note:
- To release resources used by this
ZipFile, theclose()method should be called explicitly or by try-with-resources. Subclasses are responsible for the cleanup of resources acquired by the subclass. Subclasses that overrideObject.finalize()in order to perform cleanup should be modified to use alternative cleanup mechanisms such asCleanerand remove the overridingfinalizemethod. - Since:
- 1.1
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intCentral directory (CEN) header internal file attributes field offset.static intCentral directory (CEN) header external file attributes field offset.static intCentral directory (CEN) header comment length field offset.static intCentral directory (CEN) header uncompressed file crc-32 value field offset.static intCentral directory (CEN) header disk number start field offset.static intCentral directory (CEN) header extra field length field offset.static intCentral directory (CEN) header encrypt, decrypt flags field offset.static intCentral directory (CEN) header size in bytes (including signature).static intCentral directory (CEN) header compression method field offset.static intCentral directory (CEN) header uncompressed size field offset.static intCentral directory (CEN) header filename length field offset.static intCentral directory (CEN) header LOC header offset field offset.static longCentral directory (CEN) header signature.static intCentral directory (CEN) header compressed size field offset.static intCentral directory (CEN) header modification time field offset.static intCentral directory (CEN) header version made by field offset.static intCentral directory (CEN) header version needed to extract field offset.static intEnd of central directory (END) header zip file comment length field offset.static intEnd of central directory (END) header size in bytes (including signature).static intEnd of central directory (END) header offset for the first CEN header field offset.static longEnd of central directory (END) header signature.static intEnd of central directory (END) header central directory size in bytes field offset.static intEnd of central directory (END) header number of entries on this disk field offset.static intEnd of central directory (END) header total number of entries field offset.static intExtra local (EXT) header uncompressed file crc-32 value field offset.static intExtra local (EXT) header size in bytes (including signature).static intExtra local (EXT) header uncompressed size field offset.static longExtra local (EXT) header signature.static intExtra local (EXT) header compressed size field offset.static intLocal file (LOC) header uncompressed file crc-32 value field offset.static intLocal file (LOC) header extra field length field offset.static intLocal file (LOC) header general purpose bit flag field offset.static intLocal file (LOC) header size in bytes (including signature).static intLocal file (LOC) header compression method field offset.static intLocal file (LOC) header uncompressed size field offset.static intLocal file (LOC) header filename length field offset.static longLocal file (LOC) header signature.static intLocal file (LOC) header compressed size field offset.static intLocal file (LOC) header modification time field offset.static intLocal file (LOC) header version needed to extract field offset.static intMode flag to open a zip file and mark it for deletion.static intMode flag to open a zip file for reading. -
Constructor Summary
ConstructorsConstructorDescriptionOpens a ZIP file for reading given the specified File object.Opens a newZipFileto read from the specifiedFileobject in the specified mode.Opens a newZipFileto read from the specifiedFileobject in the specified mode.Opens a ZIP file for reading given the specified File object.Opens a zip file for reading.Opens a zip file for reading. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Closes the ZIP file.Enumeration<? extends ZipEntry>entries()Returns an enumeration of the ZIP file entries.Returns the zip file comment, or null if none.Returns the zip file entry for the specified name, or null if not found.getInputStream(ZipEntry entry)Returns an input stream for reading the contents of the specified zip file entry.getName()Returns the path name of the ZIP file.intsize()Returns the number of entries in the ZIP file.stream()Returns an orderedStreamover the ZIP file entries.
-
Field Details
-
OPEN_READ
public static final int OPEN_READMode flag to open a zip file for reading.- See Also:
- Constant Field Values
-
OPEN_DELETE
public static final int OPEN_DELETEMode flag to open a zip file and mark it for deletion. The file will be deleted some time between the moment that it is opened and the moment that it is closed, but its contents will remain accessible via theZipFileobject until either the close method is invoked or the virtual machine exits.- See Also:
- Constant Field Values
-
LOCSIG
static final long LOCSIGLocal file (LOC) header signature.- See Also:
- Constant Field Values
-
EXTSIG
static final long EXTSIGExtra local (EXT) header signature.- See Also:
- Constant Field Values
-
CENSIG
static final long CENSIGCentral directory (CEN) header signature.- See Also:
- Constant Field Values
-
ENDSIG
static final long ENDSIGEnd of central directory (END) header signature.- See Also:
- Constant Field Values
-
LOCHDR
static final int LOCHDRLocal file (LOC) header size in bytes (including signature).- See Also:
- Constant Field Values
-
EXTHDR
static final int EXTHDRExtra local (EXT) header size in bytes (including signature).- See Also:
- Constant Field Values
-
CENHDR
static final int CENHDRCentral directory (CEN) header size in bytes (including signature).- See Also:
- Constant Field Values
-
ENDHDR
static final int ENDHDREnd of central directory (END) header size in bytes (including signature).- See Also:
- Constant Field Values
-
LOCVER
static final int LOCVERLocal file (LOC) header version needed to extract field offset.- See Also:
- Constant Field Values
-
LOCFLG
static final int LOCFLGLocal file (LOC) header general purpose bit flag field offset.- See Also:
- Constant Field Values
-
LOCHOW
static final int LOCHOWLocal file (LOC) header compression method field offset.- See Also:
- Constant Field Values
-
LOCTIM
static final int LOCTIMLocal file (LOC) header modification time field offset.- See Also:
- Constant Field Values
-
LOCCRC
static final int LOCCRCLocal file (LOC) header uncompressed file crc-32 value field offset.- See Also:
- Constant Field Values
-
LOCSIZ
static final int LOCSIZLocal file (LOC) header compressed size field offset.- See Also:
- Constant Field Values
-
LOCLEN
static final int LOCLENLocal file (LOC) header uncompressed size field offset.- See Also:
- Constant Field Values
-
LOCNAM
static final int LOCNAMLocal file (LOC) header filename length field offset.- See Also:
- Constant Field Values
-
LOCEXT
static final int LOCEXTLocal file (LOC) header extra field length field offset.- See Also:
- Constant Field Values
-
EXTCRC
static final int EXTCRCExtra local (EXT) header uncompressed file crc-32 value field offset.- See Also:
- Constant Field Values
-
EXTSIZ
static final int EXTSIZExtra local (EXT) header compressed size field offset.- See Also:
- Constant Field Values
-
EXTLEN
static final int EXTLENExtra local (EXT) header uncompressed size field offset.- See Also:
- Constant Field Values
-
CENVEM
static final int CENVEMCentral directory (CEN) header version made by field offset.- See Also:
- Constant Field Values
-
CENVER
static final int CENVERCentral directory (CEN) header version needed to extract field offset.- See Also:
- Constant Field Values
-
CENFLG
static final int CENFLGCentral directory (CEN) header encrypt, decrypt flags field offset.- See Also:
- Constant Field Values
-
CENHOW
static final int CENHOWCentral directory (CEN) header compression method field offset.- See Also:
- Constant Field Values
-
CENTIM
static final int CENTIMCentral directory (CEN) header modification time field offset.- See Also:
- Constant Field Values
-
CENCRC
static final int CENCRCCentral directory (CEN) header uncompressed file crc-32 value field offset.- See Also:
- Constant Field Values
-
CENSIZ
static final int CENSIZCentral directory (CEN) header compressed size field offset.- See Also:
- Constant Field Values
-
CENLEN
static final int CENLENCentral directory (CEN) header uncompressed size field offset.- See Also:
- Constant Field Values
-
CENNAM
static final int CENNAMCentral directory (CEN) header filename length field offset.- See Also:
- Constant Field Values
-
CENEXT
static final int CENEXTCentral directory (CEN) header extra field length field offset.- See Also:
- Constant Field Values
-
CENCOM
static final int CENCOMCentral directory (CEN) header comment length field offset.- See Also:
- Constant Field Values
-
CENDSK
static final int CENDSKCentral directory (CEN) header disk number start field offset.- See Also:
- Constant Field Values
-
CENATT
static final int CENATTCentral directory (CEN) header internal file attributes field offset.- See Also:
- Constant Field Values
-
CENATX
static final int CENATXCentral directory (CEN) header external file attributes field offset.- See Also:
- Constant Field Values
-
CENOFF
static final int CENOFFCentral directory (CEN) header LOC header offset field offset.- See Also:
- Constant Field Values
-
ENDSUB
static final int ENDSUBEnd of central directory (END) header number of entries on this disk field offset.- See Also:
- Constant Field Values
-
ENDTOT
static final int ENDTOTEnd of central directory (END) header total number of entries field offset.- See Also:
- Constant Field Values
-
ENDSIZ
static final int ENDSIZEnd of central directory (END) header central directory size in bytes field offset.- See Also:
- Constant Field Values
-
ENDOFF
static final int ENDOFFEnd of central directory (END) header offset for the first CEN header field offset.- See Also:
- Constant Field Values
-
ENDCOM
static final int ENDCOMEnd of central directory (END) header zip file comment length field offset.- See Also:
- Constant Field Values
-
-
Constructor Details
-
ZipFile
Opens a zip file for reading.First, if there is a security manager, its
checkReadmethod is called with thenameargument as its argument to ensure the read is allowed.The UTF-8
charsetis used to decode the entry names and comments.- Parameters:
name- the name of the zip file- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurredSecurityException- if a security manager exists and itscheckReadmethod doesn't allow read access to the file.- See Also:
SecurityManager.checkRead(java.lang.String)
-
ZipFile
Opens a newZipFileto read from the specifiedFileobject in the specified mode. The mode argument must be eitherOPEN_READorOPEN_READ | OPEN_DELETE.First, if there is a security manager, its
checkReadmethod is called with thenameargument as its argument to ensure the read is allowed.The UTF-8
charsetis used to decode the entry names and comments- Parameters:
file- the ZIP file to be opened for readingmode- the mode in which the file is to be opened- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurredSecurityException- if a security manager exists and itscheckReadmethod doesn't allow read access to the file, or itscheckDeletemethod doesn't allow deleting the file when theOPEN_DELETEflag is set.IllegalArgumentException- if themodeargument is invalid- Since:
- 1.3
- See Also:
SecurityManager.checkRead(java.lang.String)
-
ZipFile
Opens a ZIP file for reading given the specified File object.The UTF-8
charsetis used to decode the entry names and comments.- Parameters:
file- the ZIP file to be opened for reading- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurred
-
ZipFile
Opens a newZipFileto read from the specifiedFileobject in the specified mode. The mode argument must be eitherOPEN_READorOPEN_READ | OPEN_DELETE.First, if there is a security manager, its
checkReadmethod is called with thenameargument as its argument to ensure the read is allowed.- Parameters:
file- the ZIP file to be opened for readingmode- the mode in which the file is to be openedcharset- the charset to be used to decode the ZIP entry name and comment that are not encoded by using UTF-8 encoding (indicated by entry's general purpose flag).- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurredSecurityException- if a security manager exists and itscheckReadmethod doesn't allow read access to the file,or itscheckDeletemethod doesn't allow deleting the file when theOPEN_DELETEflag is setIllegalArgumentException- if themodeargument is invalid- Since:
- 1.7
- See Also:
SecurityManager.checkRead(java.lang.String)
-
ZipFile
Opens a zip file for reading.First, if there is a security manager, its
checkReadmethod is called with thenameargument as its argument to ensure the read is allowed.- Parameters:
name- the name of the zip filecharset- the charset to be used to decode the ZIP entry name and comment that are not encoded by using UTF-8 encoding (indicated by entry's general purpose flag).- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurredSecurityException- if a security manager exists and itscheckReadmethod doesn't allow read access to the file- Since:
- 1.7
- See Also:
SecurityManager.checkRead(java.lang.String)
-
ZipFile
Opens a ZIP file for reading given the specified File object.- Parameters:
file- the ZIP file to be opened for readingcharset- The charset to be used to decode the ZIP entry name and comment (ignored if the language encoding bit of the ZIP entry's general purpose bit flag is set).- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurred- Since:
- 1.7
-
-
Method Details
-
getComment
Returns the zip file comment, or null if none.- Returns:
- the comment string for the zip file, or null if none
- Throws:
IllegalStateException- if the zip file has been closed- Since:
- 1.7
-
getEntry
Returns the zip file entry for the specified name, or null if not found.- Parameters:
name- the name of the entry- Returns:
- the zip file entry, or null if not found
- Throws:
IllegalStateException- if the zip file has been closed
-
getInputStream
Returns an input stream for reading the contents of the specified zip file entry.Closing this ZIP file will, in turn, close all input streams that have been returned by invocations of this method.
- Parameters:
entry- the zip file entry- Returns:
- the input stream for reading the contents of the specified zip file entry.
- Throws:
ZipException- if a ZIP format error has occurredIOException- if an I/O error has occurredIllegalStateException- if the zip file has been closed
-
getName
Returns the path name of the ZIP file.- Returns:
- the path name of the ZIP file
-
entries
Returns an enumeration of the ZIP file entries.- Returns:
- an enumeration of the ZIP file entries
- Throws:
IllegalStateException- if the zip file has been closed
-
stream
Returns an orderedStreamover the ZIP file entries. Entries appear in theStreamin the order they appear in the central directory of the ZIP file.- Returns:
- an ordered
Streamof entries in this ZIP file - Throws:
IllegalStateException- if the zip file has been closed- Since:
- 1.8
-
size
public int size()Returns the number of entries in the ZIP file.- Returns:
- the number of entries in the ZIP file
- Throws:
IllegalStateException- if the zip file has been closed
-
close
Closes the ZIP file.Closing this ZIP file will close all of the input streams previously returned by invocations of the
getInputStreammethod.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException- if an I/O error has occurred
-