Package com.socrata.utils.streams

Examples of com.socrata.utils.streams.CompressingGzipInputStream


                if (!(object instanceof InputStream)) {
                    throw new IllegalArgumentException("Can only compress puts that use an InputStream");
                }

                try {
                    return new CompressingGzipInputStream((InputStream)object) ;
                } catch (IOException ioe) {
                    throw new BadCompressionException(ioe);
                }
            }
View Full Code Here

TOP

Related Classes of com.socrata.utils.streams.CompressingGzipInputStream

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.