Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.DeflaterOutputStream

Availability: JDK 1.1

public class DeflaterOutputStream extends FilterOutputStream {
   // Public Constructors
      public DeflaterOutputStream(OutputStream out, Deflater def, int size);
      public DeflaterOutputStream(OutputStream out, Deflater def);
      public DeflaterOutputStream(OutputStream out);
   // Protected Instance Variables
      protected byte[] buf;
      protected Deflater def;
   // Public Instance Methods
      public void close() throws IOException;  // Overrides FilterOutputStream.close()
      public void finish() throws IOException;
      public void write(int b) throws IOException;  // Overrides FilterOutputStream.write()
      public void write(byte[] b, int off, int len) throws IOException;  // Overrides FilterOutputStream.write()
   // Protected Instance Methods
      protected void deflate() throws IOException;
}

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