707172737475767778
} } public static OutputStream getCompressedOutputStream(OutputStream out) { ZOutputStream zOut = new ZOutputStream(out,JZlib.Z_BEST_COMPRESSION); zOut.setFlushMode(JZlib.Z_PARTIAL_FLUSH); return zOut; }