Example usage for Java java.util.zip ZipInputStream fields, constructors, methods, implement or subclass
The text is from its open source code.
ZipInputStream(InputStream in) Creates a new ZIP input stream. | |
ZipInputStream(InputStream in, Charset charset) Creates a new ZIP input stream. |
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. |
Class> | getClass() Returns the runtime class of this Object . |
ZipEntry | getNextEntry() Reads the next ZIP file entry and positions the stream at the beginning of the entry data. |
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. |
int | read(byte[] b, int off, int len) Reads from the current ZIP entry into an array of bytes. |
long | skip(long n) Skips specified number of bytes in the current ZIP entry. |