- All Implemented Interfaces:
Closeable,AutoCloseable
- Direct Known Subclasses:
JarFile
public class ZipFile extends Object implements Closeable
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
Fields Modifier and Type Field Description static intCENATTCentral directory (CEN) header internal file attributes field offset.static intCENATXCentral directory (CEN) header external file attributes field offset.static intCENCOMCentral directory (CEN) header comment length field offset.static intCENCRCCentral directory (CEN) header uncompressed file crc-32 value field offset.static intCENDSKCentral directory (CEN) header disk number start field offset.static intCENEXTCentral directory (CEN) header extra field length field offset.static intCENFLGCentral directory (CEN) header encrypt, decrypt flags field offset.static intCENHDRCentral directory (CEN) header size in bytes (including signature).static intCENHOWCentral directory (CEN) header compression method field offset.static intCENLENCentral directory (CEN) header uncompressed size field offset.static intCENNAMCentral directory (CEN) header filename length field offset.static intCENOFFCentral directory (CEN) header LOC header offset field offset.static longCENSIGCentral directory (CEN) header signature.static intCENSIZCentral directory (CEN) header compressed size field offset.static intCENTIMCentral directory (CEN) header modification time field offset.static intCENVEMCentral directory (CEN) header version made by field offset.static intCENVERCentral directory (CEN) header version needed to extract field offset.static intENDCOMEnd of central directory (END) header zip file comment length field offset.static intENDHDREnd of central directory (END) header size in bytes (including signature).static intENDOFFEnd of central directory (END) header offset for the first CEN header field offset.static longENDSIGEnd of central directory (END) header signature.static intENDSIZEnd of central directory (END) header central directory size in bytes field offset.static intENDSUBEnd of central directory (END) header number of entries on this disk field offset.static intENDTOTEnd of central directory (END) header total number of entries field offset.static intEXTCRCExtra local (EXT) header uncompressed file crc-32 value field offset.static intEXTHDRExtra local (EXT) header size in bytes (including signature).static intEXTLENExtra local (EXT) header uncompressed size field offset.static longEXTSIGExtra local (EXT) header signature.static intEXTSIZExtra local (EXT) header compressed size field offset.static intLOCCRCLocal file (LOC) header uncompressed file crc-32 value field offset.static intLOCEXTLocal file (LOC) header extra field length field offset.static intLOCFLGLocal file (LOC) header general purpose bit flag field offset.static intLOCHDRLocal file (LOC) header size in bytes (including signature).static intLOCHOWLocal file (LOC) header compression method field offset.static intLOCLENLocal file (LOC) header uncompressed size field offset.static intLOCNAMLocal file (LOC) header filename length field offset.static longLOCSIGLocal file (LOC) header signature.static intLOCSIZLocal file (LOC) header compressed size field offset.static intLOCTIMLocal file (LOC) header modification time field offset.static intLOCVERLocal file (LOC) header version needed to extract field offset.static intOPEN_DELETEMode flag to open a zip file and mark it for deletion.static intOPEN_READMode flag to open a zip file for reading. -
Constructor Summary
Constructors Constructor Description ZipFile(File file)Opens a ZIP file for reading given the specified File object.ZipFile(File file, int mode)Opens a newZipFileto read from the specifiedFileobject in the specified mode.ZipFile(File file, int mode, Charset charset)Opens a newZipFileto read from the specifiedFileobject in the specified mode.ZipFile(File file, Charset charset)Opens a ZIP file for reading given the specified File object.ZipFile(String name)Opens a zip file for reading.ZipFile(String name, Charset charset)Opens a zip file for reading. -
Method Summary
Modifier and Type Method Description voidclose()Closes the ZIP file.Enumeration<? extends ZipEntry>entries()Returns an enumeration of the ZIP file entries.StringgetComment()Returns the zip file comment, or null if none.ZipEntrygetEntry(String name)Returns the zip file entry for the specified name, or null if not found.InputStreamgetInputStream(ZipEntry entry)Returns an input stream for reading the contents of the specified zip file entry.StringgetName()Returns the path name of the ZIP file.intsize()Returns the number of entries in the ZIP file.Stream<? extends ZipEntry>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
-