Package com.jcraft.jzlib

Examples of com.jcraft.jzlib.DeflaterOutputStream


* @author Alexey Andreev <konsoletyper@gmail.com>
*/
public class TDeflaterOutputStream extends FilterOutputStream {
    public TDeflaterOutputStream(OutputStream out) throws IOException {
        super(out);
        this.out = new DeflaterOutputStream(out);
    }
View Full Code Here

TOP

Related Classes of com.jcraft.jzlib.DeflaterOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.