Example usage for Java java.util.jar JarInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
JarInputStream(InputStream in) Creates a new JarInputStream and reads the optional manifest. | |
JarInputStream(InputStream in, boolean verify) Creates a new JarInputStream and reads the optional manifest. |
int | available() Returns 0 after EOF has reached for the current entry data, otherwise always return 1. |
void | close() Closes this input stream and releases any system resources associated with the stream. |
void | closeEntry() Closes the current ZIP entry and positions the stream for reading the next entry. |
Manifest | getManifest() Returns the Manifest for this JAR file, or null if none. |
ZipEntry | getNextEntry() Reads the next ZIP file entry and positions the stream at the beginning of the entry data. |
JarEntry | getNextJarEntry() Reads the next JAR file entry and positions the stream at the beginning of the entry data. |
int | read(byte[] b, int off, int len) Reads from the current JAR file entry into an array of bytes. |
int | read(byte b[]) Reads up to b.length bytes of data from this input stream into an array of bytes. |
int | read() Reads a byte of uncompressed data. |