Class ZipFile
- java.lang.Object
-
- org.apache.commons.compress.archivers.zip.ZipFile
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class ZipFile extends java.lang.Object implements java.io.CloseableReplacement forZipFile.This class adds support for file name encodings other than UTF-8 (which is required to work on ZIP files created by native ZIP tools and is able to skip a preamble like the one found in self extracting archives. Furthermore it returns instances of
org.apache.commons.compress.archivers.zip.ZipArchiveEntryinstead ofZipEntry.It doesn't extend
ZipFileas it would have to reimplement all methods anyway. LikeZipFile, it uses SeekableByteChannel under the covers and supports compressed and uncompressed entries. As of Apache Commons Compress 1.3 it also transparently supports Zip64 extensions and thus individual entries and archives larger than 4 GB or with more than 65,536 entries.The method signatures mimic the ones of
ZipFile, with a couple of exceptions:- There is no getName method.
- entries has been renamed to getEntries.
- getEntries and getEntry return
org.apache.commons.compress.archivers.zip.ZipArchiveEntryinstances. - close is allowed to throw IOException.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classZipFile.BoundedFileChannelInputStreamLock-free implementation of BoundedInputStream.static classZipFile.BuilderBuilds newZipFileinstances.private static classZipFile.EntryExtends ZipArchiveEntry to store the offset within the archive.private static classZipFile.NameAndCommentprivate static classZipFile.StoredStatisticsStream
-
Field Summary
Fields Modifier and Type Field Description private java.nio.channels.SeekableByteChannelarchiveThe actual data source.(package private) static intBYTE_SHIFTprivate longcentralDirectoryStartDiskNumberprivate longcentralDirectoryStartOffsetprivate longcentralDirectoryStartRelativeOffsetprivate static intCFD_DISK_OFFSETOffset of the field that holds the disk number of the first central directory entry inside the "End of central directory record" relative to the start of the "End of central directory record".private static intCFD_LENGTH_OFFSETOffset of the field that holds the location of the length of the central directory inside the "End of central directory record" relative to the start of the "End of central directory record".private static intCFD_LOCATOR_RELATIVE_OFFSETOffset of the field that holds the location of the first central directory entry inside the "End of central directory record" relative to the "number of the disk with the start of the central directory".private static intCFH_LENLength of a "central directory" entry structure without file name, extra fields or comment.private static longCFH_SIGprivate java.nio.ByteBuffercfhBbufprivate byte[]cfhBufprivate booleanclosedWhether the file is closed.private static java.lang.StringDEFAULT_CHARSET_NAMEprivate java.nio.ByteBufferdwordBbufprivate byte[]dwordBufprivate java.nio.charset.CharsetencodingThe encoding to use for file names and the file comment.private java.util.List<ZipArchiveEntry>entriesList of entries in the order they appear inside the central directory.private longfirstLocalFileHeaderOffsetprivate static intHASH_SIZEprivate booleanisSplitZipArchiveWhether the ZIP archive is a split ZIP archiveprivate static longLFH_OFFSET_FOR_FILENAME_LENGTHNumber of bytes in local file header up to the "length of file name" entry.private static intMAX_EOCD_SIZEMaximum length of the "End of central directory record" with a file comment.(package private) static intMIN_EOCD_SIZELength of the "End of central directory record" - which is supposed to be the last structure of the archive - without file comment.private java.util.Map<java.lang.String,java.util.LinkedList<ZipArchiveEntry>>nameMapMaps String to list of ZipArchiveEntrys, name -> actual entries.(package private) static intNIBLET_MASKprivate static java.util.Comparator<ZipArchiveEntry>offsetComparatorCompares two ZipArchiveEntries based on their offset within the archive.private static byte[]ONE_ZERO_BYTEprivate static intPOS_0private static intPOS_1private static intPOS_2private static intPOS_3private static java.util.EnumSet<java.nio.file.StandardOpenOption>READprivate java.nio.ByteBuffershortBbufprivate byte[]shortBufprivate booleanuseUnicodeExtraFieldsWhether to look for and use Unicode extra fields.private java.nio.ByteBufferwordBbufprivate byte[]wordBufprivate static intZIP64_EOCD_CFD_DISK_OFFSETOffset of the field that holds the disk number of the first central directory entry inside the "Zip64 end of central directory record" relative to the start of the "Zip64 end of central directory record".private static intZIP64_EOCD_CFD_LOCATOR_OFFSETOffset of the field that holds the location of the first central directory entry inside the "Zip64 end of central directory record" relative to the start of the "Zip64 end of central directory record".private static intZIP64_EOCD_CFD_LOCATOR_RELATIVE_OFFSETOffset of the field that holds the location of the first central directory entry inside the "Zip64 end of central directory record" relative to the "number of the disk with the start of the central directory".private static intZIP64_EOCDL_LENGTHLength of the "Zip64 end of central directory locator" - which should be right in front of the "end of central directory record" if one is present at all.private static intZIP64_EOCDL_LOCATOR_OFFSETOffset of the field that holds the location of the "Zip64 end of central directory record" inside the "Zip64 end of central directory locator" relative to the start of the "Zip64 end of central directory locator".private ZipEncodingzipEncodingThe ZIP encoding to use for file names and the file comment.
-
Constructor Summary
Constructors Modifier Constructor Description ZipFile(java.io.File file)Deprecated.ZipFile(java.io.File file, java.lang.String encoding)Deprecated.ZipFile(java.io.File file, java.lang.String encoding, boolean useUnicodeExtraFields)Deprecated.ZipFile(java.io.File file, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader)Deprecated.ZipFile(java.lang.String name)Deprecated.ZipFile(java.lang.String name, java.lang.String encoding)Deprecated.ZipFile(java.nio.channels.SeekableByteChannel channel)Deprecated.ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String encoding)Deprecated.ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields)Deprecated.ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader)Deprecated.privateZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields, boolean closeOnError, boolean ignoreLocalFileHeader)privateZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.nio.charset.Charset encoding, boolean useUnicodeExtraFields, boolean closeOnError, boolean ignoreLocalFileHeader)ZipFile(java.nio.file.Path path)Deprecated.ZipFile(java.nio.file.Path path, java.lang.String encoding)Deprecated.ZipFile(java.nio.file.Path path, java.lang.String encoding, boolean useUnicodeExtraFields)Deprecated.ZipFile(java.nio.file.Path path, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZipFile.Builderbuilder()Creates a new Builder.booleancanReadEntryData(ZipArchiveEntry entry)Whether this class is able to read the given entry.voidclose()Closes the archive.static voidcloseQuietly(ZipFile zipFile)Closes a ZIP file quietly; throwing no IOException, does nothing on null input.voidcopyRawEntries(ZipArchiveOutputStream target, ZipArchiveEntryPredicate predicate)Transfer selected entries from this ZIP file to a given #ZipArchiveOutputStream.private BoundedArchiveInputStreamcreateBoundedInputStream(long start, long remaining)Creates new BoundedInputStream, according to implementation of underlying archive channel.private voidfillNameMap()protected voidfinalize()Ensures that the close method of this ZIP file is called when there are no more references to it.java.io.InputStreamgetContentBeforeFirstLocalFileHeader()Gets an InputStream for reading the content before the first local file header.private longgetDataOffset(ZipArchiveEntry ze)java.lang.StringgetEncoding()Gets the encoding to use for file names and the file comment.java.util.Enumeration<ZipArchiveEntry>getEntries()Gets all entries.java.lang.Iterable<ZipArchiveEntry>getEntries(java.lang.String name)Gets all named entries in the same order they appear within the archive's central directory.java.util.Enumeration<ZipArchiveEntry>getEntriesInPhysicalOrder()Gets all entries in physical order.java.lang.Iterable<ZipArchiveEntry>getEntriesInPhysicalOrder(java.lang.String name)Gets all named entries in the same order their contents appear within the archive.ZipArchiveEntrygetEntry(java.lang.String name)Gets a named entry ornullif no entry by that name exists.longgetFirstLocalFileHeaderOffset()Gets the offset of the first local file header in the file.java.io.InputStreamgetInputStream(ZipArchiveEntry entry)Gets an InputStream for reading the contents of the given entry.java.io.InputStreamgetRawInputStream(ZipArchiveEntry entry)Gets the raw stream of the archive entry (compressed form).java.lang.StringgetUnixSymlink(ZipArchiveEntry entry)Gets the entry's content as a String if isUnixSymlink() returns true for it, otherwise returns null.private static java.nio.channels.SeekableByteChannelnewReadByteChannel(java.nio.file.Path path)Creates a new SeekableByteChannel for reading.private static java.nio.channels.SeekableByteChannelopenZipChannel(java.nio.file.Path path, long maxNumberOfDisks, java.nio.file.OpenOption[] openOptions)private java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment>populateFromCentralDirectory()Reads the central directory of the given archive and populates the internal tables with ZipArchiveEntry instances.private voidpositionAtCentralDirectory()Searches for either the "Zip64 end of central directory locator" or the "End of central dir record", parses it and positions the stream at the first central directory record.private voidpositionAtCentralDirectory32()Parses the "End of central dir record" and positions the stream at the first central directory record.private voidpositionAtCentralDirectory64()Parses the "Zip64 end of central directory locator", finds the "Zip64 end of central directory record" using the parsed information, parses that and positions the stream at the first central directory record.private static booleanpositionAtEndOfCentralDirectoryRecord(java.nio.channels.SeekableByteChannel channel)Searches for the and positions the stream at the start of the "End of central dir record".private voidreadCentralDirectoryEntry(java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment> noUTF8Flag)Reads an individual entry of the central directory, creates an ZipArchiveEntry from it and adds it to the global maps.private voidresolveLocalFileHeaderData(java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment> entriesWithoutUTF8Flag)Walks through all recorded entries and adds the data available from the local file header.private voidsanityCheckLFHOffset(ZipArchiveEntry entry)private int[]setDataOffset(ZipArchiveEntry entry)private voidsetSizesAndOffsetFromZip64Extra(ZipArchiveEntry entry)If the entry holds a Zip64 extended information extra field, read sizes from there if the entry's sizes are set to 0xFFFFFFFFF, do the same for the offset of the local file header.private voidskipBytes(int count)Skips the given number of bytes or throws an EOFException if skipping failed.private ZipArchiveEntry[]sortByOffset(ZipArchiveEntry[] allEntries)Sorts entries in place by offset.private booleanstartsWithLocalFileHeader()Checks whether the archive starts with an LFH.private static booleantryToLocateSignature(java.nio.channels.SeekableByteChannel channel, long minDistanceFromEnd, long maxDistanceFromEnd, byte[] sig)Searches the archive backwards from minDistance to maxDistance for the given signature, positions the RandomaccessFile right at the signature if it has been found.
-
-
-
Field Detail
-
DEFAULT_CHARSET_NAME
private static final java.lang.String DEFAULT_CHARSET_NAME
-
READ
private static final java.util.EnumSet<java.nio.file.StandardOpenOption> READ
-
HASH_SIZE
private static final int HASH_SIZE
- See Also:
- Constant Field Values
-
NIBLET_MASK
static final int NIBLET_MASK
- See Also:
- Constant Field Values
-
BYTE_SHIFT
static final int BYTE_SHIFT
- See Also:
- Constant Field Values
-
POS_0
private static final int POS_0
- See Also:
- Constant Field Values
-
POS_1
private static final int POS_1
- See Also:
- Constant Field Values
-
POS_2
private static final int POS_2
- See Also:
- Constant Field Values
-
POS_3
private static final int POS_3
- See Also:
- Constant Field Values
-
ONE_ZERO_BYTE
private static final byte[] ONE_ZERO_BYTE
-
CFH_LEN
private static final int CFH_LEN
Length of a "central directory" entry structure without file name, extra fields or comment.- See Also:
- Constant Field Values
-
CFH_SIG
private static final long CFH_SIG
-
MIN_EOCD_SIZE
static final int MIN_EOCD_SIZE
Length of the "End of central directory record" - which is supposed to be the last structure of the archive - without file comment.- See Also:
- Constant Field Values
-
MAX_EOCD_SIZE
private static final int MAX_EOCD_SIZE
Maximum length of the "End of central directory record" with a file comment.- See Also:
- Constant Field Values
-
CFD_LENGTH_OFFSET
private static final int CFD_LENGTH_OFFSET
Offset of the field that holds the location of the length of the central directory inside the "End of central directory record" relative to the start of the "End of central directory record".- See Also:
- Constant Field Values
-
CFD_DISK_OFFSET
private static final int CFD_DISK_OFFSET
Offset of the field that holds the disk number of the first central directory entry inside the "End of central directory record" relative to the start of the "End of central directory record".- See Also:
- Constant Field Values
-
CFD_LOCATOR_RELATIVE_OFFSET
private static final int CFD_LOCATOR_RELATIVE_OFFSET
Offset of the field that holds the location of the first central directory entry inside the "End of central directory record" relative to the "number of the disk with the start of the central directory".- See Also:
- Constant Field Values
-
ZIP64_EOCDL_LENGTH
private static final int ZIP64_EOCDL_LENGTH
Length of the "Zip64 end of central directory locator" - which should be right in front of the "end of central directory record" if one is present at all.- See Also:
- Constant Field Values
-
ZIP64_EOCDL_LOCATOR_OFFSET
private static final int ZIP64_EOCDL_LOCATOR_OFFSET
Offset of the field that holds the location of the "Zip64 end of central directory record" inside the "Zip64 end of central directory locator" relative to the start of the "Zip64 end of central directory locator".- See Also:
- Constant Field Values
-
ZIP64_EOCD_CFD_LOCATOR_OFFSET
private static final int ZIP64_EOCD_CFD_LOCATOR_OFFSET
Offset of the field that holds the location of the first central directory entry inside the "Zip64 end of central directory record" relative to the start of the "Zip64 end of central directory record".- See Also:
- Constant Field Values
-
ZIP64_EOCD_CFD_DISK_OFFSET
private static final int ZIP64_EOCD_CFD_DISK_OFFSET
Offset of the field that holds the disk number of the first central directory entry inside the "Zip64 end of central directory record" relative to the start of the "Zip64 end of central directory record".- See Also:
- Constant Field Values
-
ZIP64_EOCD_CFD_LOCATOR_RELATIVE_OFFSET
private static final int ZIP64_EOCD_CFD_LOCATOR_RELATIVE_OFFSET
Offset of the field that holds the location of the first central directory entry inside the "Zip64 end of central directory record" relative to the "number of the disk with the start of the central directory".- See Also:
- Constant Field Values
-
LFH_OFFSET_FOR_FILENAME_LENGTH
private static final long LFH_OFFSET_FOR_FILENAME_LENGTH
Number of bytes in local file header up to the "length of file name" entry.- See Also:
- Constant Field Values
-
offsetComparator
private static final java.util.Comparator<ZipArchiveEntry> offsetComparator
Compares two ZipArchiveEntries based on their offset within the archive.Won't return any meaningful results if one of the entries isn't part of the archive at all.
- Since:
- 1.1
-
entries
private final java.util.List<ZipArchiveEntry> entries
List of entries in the order they appear inside the central directory.
-
nameMap
private final java.util.Map<java.lang.String,java.util.LinkedList<ZipArchiveEntry>> nameMap
Maps String to list of ZipArchiveEntrys, name -> actual entries.
-
encoding
private final java.nio.charset.Charset encoding
The encoding to use for file names and the file comment.For a list of possible values see https://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html. Defaults to UTF-8.
-
zipEncoding
private final ZipEncoding zipEncoding
The ZIP encoding to use for file names and the file comment.
-
archive
private final java.nio.channels.SeekableByteChannel archive
The actual data source.
-
useUnicodeExtraFields
private final boolean useUnicodeExtraFields
Whether to look for and use Unicode extra fields.
-
closed
private volatile boolean closed
Whether the file is closed.
-
isSplitZipArchive
private final boolean isSplitZipArchive
Whether the ZIP archive is a split ZIP archive
-
dwordBuf
private final byte[] dwordBuf
-
wordBuf
private final byte[] wordBuf
-
cfhBuf
private final byte[] cfhBuf
-
shortBuf
private final byte[] shortBuf
-
dwordBbuf
private final java.nio.ByteBuffer dwordBbuf
-
wordBbuf
private final java.nio.ByteBuffer wordBbuf
-
cfhBbuf
private final java.nio.ByteBuffer cfhBbuf
-
shortBbuf
private final java.nio.ByteBuffer shortBbuf
-
centralDirectoryStartDiskNumber
private long centralDirectoryStartDiskNumber
-
centralDirectoryStartRelativeOffset
private long centralDirectoryStartRelativeOffset
-
centralDirectoryStartOffset
private long centralDirectoryStartOffset
-
firstLocalFileHeaderOffset
private long firstLocalFileHeaderOffset
-
-
Constructor Detail
-
ZipFile
@Deprecated public ZipFile(java.io.File file) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming "UTF8" for file names.- Parameters:
file- the archive.- Throws:
java.io.IOException- if an error occurs while reading the file.
-
ZipFile
@Deprecated public ZipFile(java.io.File file, java.lang.String encoding) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming the specified encoding for file names and scanning for Unicode extra fields.- Parameters:
file- the archive.encoding- the encoding to use for file names, use null for the platform's default encoding- Throws:
java.io.IOException- if an error occurs while reading the file.
-
ZipFile
@Deprecated public ZipFile(java.io.File file, java.lang.String encoding, boolean useUnicodeExtraFields) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming the specified encoding for file names.- Parameters:
file- the archive.encoding- 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.- Throws:
java.io.IOException- if an error occurs while reading the file.
-
ZipFile
@Deprecated public ZipFile(java.io.File file, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming the specified encoding for file names.By default the central directory record and all local file headers of the archive will be read immediately which may take a considerable amount of time when the archive is big. The
ignoreLocalFileHeaderparameter can be set totruewhich restricts parsing to the central directory. Unfortunately the local file header may contain information not present inside of the central directory which will not be available when the argument is set totrue. This includes the content of the Unicode extra field, so settingignoreLocalFileHeadertotruemeansuseUnicodeExtraFieldswill be ignored effectively.- Parameters:
file- the archive.encoding- 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.ignoreLocalFileHeader- whether to ignore information stored inside the local file header (see the notes in this method's Javadoc)- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.19
-
ZipFile
@Deprecated public ZipFile(java.nio.file.Path path) throws java.io.IOExceptionDeprecated.Opens the given path for reading, assuming "UTF-8" for file names.- Parameters:
path- path to the archive.- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.22
-
ZipFile
@Deprecated public ZipFile(java.nio.file.Path path, java.lang.String encoding) throws java.io.IOExceptionDeprecated.Opens the given path for reading, assuming the specified encoding for file names and scanning for Unicode extra fields.- Parameters:
path- path to the archive.encoding- the encoding to use for file names, use null for the platform's default encoding- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.22
-
ZipFile
@Deprecated public ZipFile(java.nio.file.Path path, java.lang.String encoding, boolean useUnicodeExtraFields) throws java.io.IOExceptionDeprecated.Opens the given path for reading, assuming the specified encoding for file names.- Parameters:
path- path to the archive.encoding- 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.- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.22
-
ZipFile
@Deprecated public ZipFile(java.nio.file.Path path, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader) throws java.io.IOExceptionDeprecated.Opens the given path for reading, assuming the specified encoding for file names.By default the central directory record and all local file headers of the archive will be read immediately which may take a considerable amount of time when the archive is big. The
ignoreLocalFileHeaderparameter can be set totruewhich restricts parsing to the central directory. Unfortunately the local file header may contain information not present inside of the central directory which will not be available when the argument is set totrue. This includes the content of the Unicode extra field, so settingignoreLocalFileHeadertotruemeansuseUnicodeExtraFieldswill be ignored effectively.- Parameters:
path- path to the archive.encoding- 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.ignoreLocalFileHeader- whether to ignore information stored inside the local file header (see the notes in this method's Javadoc)- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.22
-
ZipFile
@Deprecated public ZipFile(java.nio.channels.SeekableByteChannel channel) throws java.io.IOExceptionDeprecated.Opens the given channel for reading, assuming "UTF-8" for file names.SeekableInMemoryByteChannelallows you to read from an in-memory archive.- Parameters:
channel- the archive.- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.13
-
ZipFile
@Deprecated public ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String encoding) throws java.io.IOExceptionDeprecated.Opens the given channel for reading, assuming the specified encoding for file names.SeekableInMemoryByteChannelallows you to read from an in-memory archive.- Parameters:
channel- the archive.encoding- the encoding to use for file names, use null for the platform's default encoding- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.13
-
ZipFile
private ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.nio.charset.Charset encoding, boolean useUnicodeExtraFields, boolean closeOnError, boolean ignoreLocalFileHeader) throws java.io.IOException- Throws:
java.io.IOException
-
ZipFile
@Deprecated public ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields) throws java.io.IOExceptionDeprecated.Opens the given channel for reading, assuming the specified encoding for file names.SeekableInMemoryByteChannelallows you to read from an in-memory archive.- Parameters:
channel- the archive.channelDescription- description of the archive, used for error messages only.encoding- 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.- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.13
-
ZipFile
@Deprecated public ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields, boolean ignoreLocalFileHeader) throws java.io.IOExceptionDeprecated.Opens the given channel for reading, assuming the specified encoding for file names.SeekableInMemoryByteChannelallows you to read from an in-memory archive.By default the central directory record and all local file headers of the archive will be read immediately which may take a considerable amount of time when the archive is big. The
ignoreLocalFileHeaderparameter can be set totruewhich restricts parsing to the central directory. Unfortunately the local file header may contain information not present inside of the central directory which will not be available when the argument is set totrue. This includes the content of the Unicode extra field, so settingignoreLocalFileHeadertotruemeansuseUnicodeExtraFieldswill be ignored effectively.- Parameters:
channel- the archive.channelDescription- description of the archive, used for error messages only.encoding- 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.ignoreLocalFileHeader- whether to ignore information stored inside the local file header (see the notes in this method's Javadoc)- Throws:
java.io.IOException- if an error occurs while reading the file.- Since:
- 1.19
-
ZipFile
private ZipFile(java.nio.channels.SeekableByteChannel channel, java.lang.String channelDescription, java.lang.String encoding, boolean useUnicodeExtraFields, boolean closeOnError, boolean ignoreLocalFileHeader) throws java.io.IOException- Throws:
java.io.IOException
-
ZipFile
@Deprecated public ZipFile(java.lang.String name) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming "UTF-8".- Parameters:
name- name of the archive.- Throws:
java.io.IOException- if an error occurs while reading the file.
-
ZipFile
@Deprecated public ZipFile(java.lang.String name, java.lang.String encoding) throws java.io.IOExceptionDeprecated.Opens the given file for reading, assuming the specified encoding for file names, scanning unicode extra fields.- Parameters:
name- name of the archive.encoding- the encoding to use for file names, use null for the platform's default encoding- Throws:
java.io.IOException- if an error occurs while reading the file.
-
-
Method Detail
-
builder
public static ZipFile.Builder builder()
Creates a new Builder.- Returns:
- a new Builder.
- Since:
- 1.26.0
-
closeQuietly
public static void closeQuietly(ZipFile zipFile)
Closes a ZIP file quietly; throwing no IOException, does nothing on null input.- Parameters:
zipFile- file to close, can be null
-
newReadByteChannel
private static java.nio.channels.SeekableByteChannel newReadByteChannel(java.nio.file.Path path) throws java.io.IOExceptionCreates a new SeekableByteChannel for reading.- Parameters:
path- the path to the file to open or create- Returns:
- a new seekable byte channel
- Throws:
java.io.IOException- if an I/O error occurs
-
openZipChannel
private static java.nio.channels.SeekableByteChannel openZipChannel(java.nio.file.Path path, long maxNumberOfDisks, java.nio.file.OpenOption[] openOptions) throws java.io.IOException- Throws:
java.io.IOException
-
positionAtEndOfCentralDirectoryRecord
private static boolean positionAtEndOfCentralDirectoryRecord(java.nio.channels.SeekableByteChannel channel) throws java.io.IOExceptionSearches for the and positions the stream at the start of the "End of central dir record".- Returns:
- true if it's Zip64 end of central directory or false if it's Zip32
- Throws:
java.io.IOException
-
tryToLocateSignature
private static boolean tryToLocateSignature(java.nio.channels.SeekableByteChannel channel, long minDistanceFromEnd, long maxDistanceFromEnd, byte[] sig) throws java.io.IOExceptionSearches the archive backwards from minDistance to maxDistance for the given signature, positions the RandomaccessFile right at the signature if it has been found.- Throws:
java.io.IOException
-
canReadEntryData
public boolean canReadEntryData(ZipArchiveEntry entry)
Whether this class is able to read the given entry.May return false if it is set up to use encryption or a compression method that hasn't been implemented yet.
- Parameters:
entry- the entry- Returns:
- whether this class is able to read the given entry.
- Since:
- 1.1
-
close
public void close() throws java.io.IOExceptionCloses the archive.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException- if an error occurs closing the archive.
-
copyRawEntries
public void copyRawEntries(ZipArchiveOutputStream target, ZipArchiveEntryPredicate predicate) throws java.io.IOException
Transfer selected entries from this ZIP file to a given #ZipArchiveOutputStream. Compression and all other attributes will be as in this file.This method transfers entries based on the central directory of the ZIP file.
- Parameters:
target- The zipArchiveOutputStream to write the entries topredicate- A predicate that selects which entries to write- Throws:
java.io.IOException- on error
-
createBoundedInputStream
private BoundedArchiveInputStream createBoundedInputStream(long start, long remaining)
Creates new BoundedInputStream, according to implementation of underlying archive channel.
-
fillNameMap
private void fillNameMap()
-
finalize
protected void finalize() throws java.lang.ThrowableEnsures that the close method of this ZIP file is called when there are no more references to it.- Overrides:
finalizein classjava.lang.Object- Throws:
java.lang.Throwable- See Also:
close()
-
getContentBeforeFirstLocalFileHeader
public java.io.InputStream getContentBeforeFirstLocalFileHeader()
Gets an InputStream for reading the content before the first local file header.- Returns:
- null if there is no content before the first local file header. Otherwise, returns a stream to read the content before the first local file header.
- Since:
- 1.23
-
getDataOffset
private long getDataOffset(ZipArchiveEntry ze) throws java.io.IOException
- Throws:
java.io.IOException
-
getEncoding
public java.lang.String getEncoding()
Gets the encoding to use for file names and the file comment.- Returns:
- null if using the platform's default character encoding.
-
getEntries
public java.util.Enumeration<ZipArchiveEntry> getEntries()
Gets all entries.Entries will be returned in the same order they appear within the archive's central directory.
- Returns:
- all entries as
ZipArchiveEntryinstances
-
getEntries
public java.lang.Iterable<ZipArchiveEntry> getEntries(java.lang.String name)
Gets all named entries in the same order they appear within the archive's central directory.- Parameters:
name- name of the entry.- Returns:
- the Iterable<ZipArchiveEntry> corresponding to the given name
- Since:
- 1.6
-
getEntriesInPhysicalOrder
public java.util.Enumeration<ZipArchiveEntry> getEntriesInPhysicalOrder()
Gets all entries in physical order.Entries will be returned in the same order their contents appear within the archive.
- Returns:
- all entries as
ZipArchiveEntryinstances - Since:
- 1.1
-
getEntriesInPhysicalOrder
public java.lang.Iterable<ZipArchiveEntry> getEntriesInPhysicalOrder(java.lang.String name)
Gets all named entries in the same order their contents appear within the archive.- Parameters:
name- name of the entry.- Returns:
- the Iterable<ZipArchiveEntry> corresponding to the given name
- Since:
- 1.6
-
getEntry
public ZipArchiveEntry getEntry(java.lang.String name)
Gets a named entry ornullif no entry by that name exists.If multiple entries with the same name exist the first entry in the archive's central directory by that name is returned.
- Parameters:
name- name of the entry.- Returns:
- the ZipArchiveEntry corresponding to the given name - or
nullif not present.
-
getFirstLocalFileHeaderOffset
public long getFirstLocalFileHeaderOffset()
Gets the offset of the first local file header in the file.- Returns:
- the length of the content before the first local file header
- Since:
- 1.23
-
getInputStream
public java.io.InputStream getInputStream(ZipArchiveEntry entry) throws java.io.IOException
Gets an InputStream for reading the contents of the given entry.- Parameters:
entry- the entry to get the stream for.- Returns:
- a stream to read the entry from. The returned stream implements
InputStreamStatistics. - Throws:
java.io.IOException- if unable to create an input stream from the zipEntry.
-
getRawInputStream
public java.io.InputStream getRawInputStream(ZipArchiveEntry entry) throws java.io.IOException
Gets the raw stream of the archive entry (compressed form).This method does not relate to how/if we understand the payload in the stream, since we really only intend to move it on to somewhere else.
Since version 1.22, this method will make an attempt to read the entry's data stream offset, even if the
ignoreLocalFileHeaderparameter wastruein the constructor. An IOException can also be thrown from the body of the method if this lookup fails for some reason.- Parameters:
entry- The entry to get the stream for- Returns:
- The raw input stream containing (possibly) compressed data.
- Throws:
java.io.IOException- if there is a problem reading data offset (added in version 1.22).- Since:
- 1.11
-
getUnixSymlink
public java.lang.String getUnixSymlink(ZipArchiveEntry entry) throws java.io.IOException
Gets the entry's content as a String if isUnixSymlink() returns true for it, otherwise returns null.This method assumes the symbolic link's file name uses the same encoding that as been specified for this ZipFile.
- Parameters:
entry- ZipArchiveEntry object that represents the symbolic link- Returns:
- entry's content as a String
- Throws:
java.io.IOException- problem with content's input stream- Since:
- 1.5
-
populateFromCentralDirectory
private java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment> populateFromCentralDirectory() throws java.io.IOException
Reads the central directory of the given archive and populates the internal tables with ZipArchiveEntry instances.The ZipArchiveEntrys will know all data that can be obtained from the central directory alone, but not the data that requires the local file header or additional data to be read.
- Returns:
- a map of zip entries that didn't have the language encoding flag set when read.
- Throws:
java.io.IOException
-
positionAtCentralDirectory
private void positionAtCentralDirectory() throws java.io.IOExceptionSearches for either the "Zip64 end of central directory locator" or the "End of central dir record", parses it and positions the stream at the first central directory record.- Throws:
java.io.IOException
-
positionAtCentralDirectory32
private void positionAtCentralDirectory32() throws java.io.IOExceptionParses the "End of central dir record" and positions the stream at the first central directory record. Expects stream to be positioned at the beginning of the "End of central dir record".- Throws:
java.io.IOException
-
positionAtCentralDirectory64
private void positionAtCentralDirectory64() throws java.io.IOExceptionParses the "Zip64 end of central directory locator", finds the "Zip64 end of central directory record" using the parsed information, parses that and positions the stream at the first central directory record. Expects stream to be positioned right behind the "Zip64 end of central directory locator"'s signature.- Throws:
java.io.IOException
-
readCentralDirectoryEntry
private void readCentralDirectoryEntry(java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment> noUTF8Flag) throws java.io.IOException
Reads an individual entry of the central directory, creates an ZipArchiveEntry from it and adds it to the global maps.- Parameters:
noUTF8Flag- map used to collect entries that don't have their UTF-8 flag set and whose name will be set by data read from the local file header later. The current entry may be added to this map.- Throws:
java.io.IOException
-
resolveLocalFileHeaderData
private void resolveLocalFileHeaderData(java.util.Map<ZipArchiveEntry,ZipFile.NameAndComment> entriesWithoutUTF8Flag) throws java.io.IOException
Walks through all recorded entries and adds the data available from the local file header.Also records the offsets for the data to read from the entries.
- Throws:
java.io.IOException
-
sanityCheckLFHOffset
private void sanityCheckLFHOffset(ZipArchiveEntry entry) throws java.io.IOException
- Throws:
java.io.IOException
-
setDataOffset
private int[] setDataOffset(ZipArchiveEntry entry) throws java.io.IOException
- Throws:
java.io.IOException
-
setSizesAndOffsetFromZip64Extra
private void setSizesAndOffsetFromZip64Extra(ZipArchiveEntry entry) throws java.io.IOException
If the entry holds a Zip64 extended information extra field, read sizes from there if the entry's sizes are set to 0xFFFFFFFFF, do the same for the offset of the local file header.Ensures the Zip64 extra either knows both compressed and uncompressed size or neither of both as the internal logic in ExtraFieldUtils forces the field to create local header data even if they are never used - and here a field with only one size would be invalid.
- Throws:
java.io.IOException
-
skipBytes
private void skipBytes(int count) throws java.io.IOExceptionSkips the given number of bytes or throws an EOFException if skipping failed.- Throws:
java.io.IOException
-
sortByOffset
private ZipArchiveEntry[] sortByOffset(ZipArchiveEntry[] allEntries)
Sorts entries in place by offset.- Parameters:
allEntries- entries to sort- Returns:
- the given entries, sorted.
-
startsWithLocalFileHeader
private boolean startsWithLocalFileHeader() throws java.io.IOExceptionChecks whether the archive starts with an LFH. If it doesn't, it may be an empty archive.- Throws:
java.io.IOException
-
-