Exemple #1
0
 public ZOutputStream(OutputStream out) throws IOException {
   super(out);
   this.out = out;
   inflater = new Inflater();
   inflater.init();
   compress = false;
 }