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