All Packages Class Hierarchy This Package Previous Next Index
Class org.w3c.jigsaw.zip.ZipInputStream
java.lang.Object
|
+----java.io.InputStream
|
+----org.w3c.jigsaw.zip.ZipInputStream
- public class ZipInputStream
- extends InputStream
-
ZipInputStream(ZipFile, InputStream)
-
-
available()
-
-
close()
-
-
mark(int)
-
-
markSupported()
-
-
read()
-
-
read(byte[])
-
-
read(byte[], int, int)
-
-
reset()
-
-
skip(long)
-
ZipInputStream
protected ZipInputStream(ZipFile zip,
InputStream in)
available
public int available() throws IOException
- Overrides:
- available in class InputStream
close
public void close() throws IOException
- Overrides:
- close in class InputStream
mark
public synchronized void mark(int readlimit)
- Overrides:
- mark in class InputStream
reset
public synchronized void reset() throws IOException
- Overrides:
- reset in class InputStream
markSupported
public boolean markSupported()
- Overrides:
- markSupported in class InputStream
read
public int read() throws IOException
- Overrides:
- read in class InputStream
read
public int read(byte b[]) throws IOException
- Overrides:
- read in class InputStream
read
public int read(byte b[],
int off,
int len) throws IOException
- Overrides:
- read in class InputStream
skip
public long skip(long n) throws IOException
- Overrides:
- skip in class InputStream
All Packages Class Hierarchy This Package Previous Next Index