| java.lang.Object | ||||||
| java.io.InputStream | Closeable | |||||
| java.io.FilterInputStream | ||||||
| java.util.zip.InflaterInputStream | ||||||
| java.util.zip.ZipInputStream | ||||||
| java.util.jar.JarInputStream | ||||||
Constants inherited
from class
java.util.zip.ZipInputStream
Fields inherited
from class
java.util.zip.InflaterInputStream
Fields inherited
from class
java.io.FilterInputStream
| JarInputStream(InputStream stream, boolean verify) | |||||
| Constructs a new JarInputStream from stream | |||||
| JarInputStream(InputStream stream) | |||||
| Manifest | getManifest() | ||||
| Returns the Manifest object associated with this JarInputStream or null if no manifest entry exists. | |||||
| ZipEntry | getNextEntry() | ||||
| Returns the next ZipEntry contained in this stream or null if no more entries are present. | |||||
| JarEntry | getNextJarEntry() | ||||
| Returns the next JarEntry contained in this stream or null if no more entries are present. | |||||
| int | read(byte[] buffer, int offset, int length) | ||||
| Reads up to the specified number of uncompressed bytes into the buffer starting at the offset. | |||||
| ZipEntry | createZipEntry(String name) |
Methods inherited
from class
java.util.zip.ZipInputStream
Methods inherited
from class
java.util.zip.InflaterInputStream
Methods inherited
from class
java.io.FilterInputStream
Methods inherited
from class
java.io.InputStream
Methods inherited
from class
java.lang.Object
Methods inherited
from interface
java.io.Closeable
| IOException |
|---|
| IOException |
|---|
| IOException | If an error occurs while reading the entry |
|---|
| IOException | If an error occurs while reading the entry |
|---|
| buffer | a byte array |
|---|---|
| offset | the starting offset into the buffer |
| length | the number of bytes to read |
| IOException |
|---|