Class java.util.zip.ZipInputStream (1.1)
public class ZipInputStream extends InflaterInputStream implements ZipConstants {
// Public Constructor
public ZipInputStream(InputStream in);
// Public Instance Methods
public synchronized void closeEntry( ) throws ZipException, IOException;
public synchronized ZipEntry getNextEntry( ) throws ZipException, IOException;
public synchronized int read( ) throws IOException, ZipException; // Overrides InflaterInputStream.read( )
public synchronized int read(byte[ ] buf, int off, int len) throws ZipException, IOException; // Overrides InflaterInputStream.read( )
public long skip(long n) throws ZipException, IOException; // Overrides InflaterInputStream.skip( )
}