Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.ZipInputStream

Availability: JDK 1.1

public class ZipInputStream extends InflaterInputStream {
   // Public Constructor
      public ZipInputStream(InputStream in);
   // Public Instance Methods
      public void close() throws IOException;  // Overrides FilterInputStream.close()
      public void closeEntry() throws IOException;
      public ZipEntry getNextEntry() throws IOException;
      public int read(byte[] b, int off, int len) throws IOException;  // Overrides InflaterInputStream.read()
      public long skip(long n) throws IOException;  // Overrides InflaterInputStream.skip()
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.