java.lang.Object
java.io.InputStream
java.io.FilterInputStream
java.util.zip.InflaterInputStream
java.util.zip.ZipInputStream
java.util.jar.JarInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
The
JarInputStream class is used to read the contents of
a JAR file from any input stream. It extends the class
java.util.zip.ZipInputStream with support for reading
an optional Manifest entry. The Manifest
can be used to store meta-information about the JAR file and its entries.- Since:
- 1.2
- See Also:
Manifest,ZipInputStream
-
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.Fields declared in class java.util.zip.InflaterInputStream
buf, inf, lenFields declared in class java.io.FilterInputStream
in -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newJarInputStreamand reads the optional manifest.JarInputStream(InputStream in, boolean verify)Creates a newJarInputStreamand reads the optional manifest. -
Method Summary
Modifier and TypeMethodDescriptionprotected ZipEntrycreateZipEntry(String name)Creates a newJarEntry(ZipEntry) for the specified JAR file entry name.Returns theManifestfor this JAR file, ornullif none.Reads the next ZIP file entry and positions the stream at the beginning of the entry data.Reads the next JAR file entry and positions the stream at the beginning of the entry data.intread(byte[] b, int off, int len)Reads from the current JAR file entry into an array of bytes.Methods declared in class java.util.zip.ZipInputStream
available, close, closeEntry, skipMethods declared in class java.util.zip.InflaterInputStream
fill, mark, markSupported, read, resetMethods declared in class java.io.FilterInputStream
readMethods declared in class java.io.InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
-
Field Details
-
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
-
JarInputStream
Creates a newJarInputStreamand reads the optional manifest. If a manifest is present, also attempts to verify the signatures if the JarInputStream is signed.- Parameters:
in- the actual input stream- Throws:
IOException- if an I/O error has occurred
-
JarInputStream
Creates a newJarInputStreamand reads the optional manifest. If a manifest is present and verify is true, also attempts to verify the signatures if the JarInputStream is signed.- Parameters:
in- the actual input streamverify- whether or not to verify the JarInputStream if it is signed.- Throws:
IOException- if an I/O error has occurred
-
-
Method Details
-
getManifest
Returns theManifestfor this JAR file, ornullif none.- Returns:
- the
Manifestfor this JAR file, ornullif none.
-
getNextEntry
Reads the next ZIP file entry and positions the stream at the beginning of the entry data. If verification has been enabled, any invalid signature detected while positioning the stream for the next entry will result in an exception.- Overrides:
getNextEntryin classZipInputStream- Returns:
- the next ZIP file entry, or null if there are no more entries
- Throws:
ZipException- if a ZIP file error has occurredIOException- if an I/O error has occurredSecurityException- if any of the jar file entries are incorrectly signed.
-
getNextJarEntry
Reads the next JAR file entry and positions the stream at the beginning of the entry data. If verification has been enabled, any invalid signature detected while positioning the stream for the next entry will result in an exception.- Returns:
- the next JAR file entry, or null if there are no more entries
- Throws:
ZipException- if a ZIP file error has occurredIOException- if an I/O error has occurredSecurityException- if any of the jar file entries are incorrectly signed.
-
read
Reads from the current JAR file entry into an array of bytes. Iflenis not zero, the method blocks until some input is available; otherwise, no bytes are read and0is returned. If verification has been enabled, any invalid signature on the current entry will be reported at some point before the end of the entry is reached.- Overrides:
readin classZipInputStream- Parameters:
b- the buffer into which the data is readoff- the start offset in the destination arrayblen- the maximum number of bytes to read- Returns:
- the actual number of bytes read, or -1 if the end of the entry is reached
- Throws:
NullPointerException- Ifbisnull.IndexOutOfBoundsException- Ifoffis negative,lenis negative, orlenis greater thanb.length - offZipException- if a ZIP file error has occurredIOException- if an I/O error has occurredSecurityException- if any of the jar file entries are incorrectly signed.- See Also:
FilterInputStream.in
-
createZipEntry
Creates a newJarEntry(ZipEntry) for the specified JAR file entry name. The manifest attributes of the specified JAR file entry name will be copied to the newJarEntry.- Overrides:
createZipEntryin classZipInputStream- Parameters:
name- the name of the JAR/ZIP file entry- Returns:
- the
JarEntryobject just created
-