Package com.jcraft.jzlib

Examples of com.jcraft.jzlib.InflaterInputStream


* @author Alexey Andreev <konsoletyper@gmail.com>
*/
public class TInflaterInputStream extends FilterInputStream {
    public TInflaterInputStream(InputStream in) throws IOException {
        super(in);
        this.in = new InflaterInputStream(in);
    }
View Full Code Here

TOP

Related Classes of com.jcraft.jzlib.InflaterInputStream

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.