Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.GZIPInputStream

Availability: JDK 1.1

public class GZIPInputStream extends InflaterInputStream {
   // Public Constructors
      public GZIPInputStream(InputStream in, int size) throws IOException;
      public GZIPInputStream(InputStream in) throws IOException;
   // Constants
      public static final int GZIP_MAGIC;
   // Protected Instance Variables
      protected CRC32 crc;
      protected boolean eos;
   // Public Instance Methods
      public void close() throws IOException;  // Overrides FilterInputStream.close()
      public int read(byte[] buf, int off, int len) throws IOException;  // Overrides InflaterInputStream.read()
}

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