8485868788899091
* the compression level * @throws IOException * on I/O error with the transport stream */ public DeflaterOutputStream(OutputStream out, int level) throws IOException { deflater = new Deflater(level); deflater.setOut(out); }