Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.ZipOutputStream

Availability: JDK 1.1

public class ZipOutputStream extends DeflaterOutputStream {
   // Public Constructor
      public ZipOutputStream(OutputStream out);
   // Constants
      public static final int DEFLATED;
      public static final int STORED;
   // Public Instance Methods
      public void close() throws IOException;  // Overrides DeflaterOutputStream.close()
      public void closeEntry() throws IOException;
      public void finish() throws IOException;  // Overrides DeflaterOutputStream.finish()
      public void putNextEntry(ZipEntry e) throws IOException;
      public void setComment(String comment);
      public void setLevel(int level);
      public void setMethod(int method);
      public synchronized void write(byte[] b, int off, int len) throws IOException;  // Overrides DeflaterOutputStream.write()
}

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