org.apache.commons.compress.compressors.gzip
Class GzipCompressorInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by org.apache.commons.compress.compressors.CompressorInputStream
          extended by org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream
All Implemented Interfaces:
java.io.Closeable

public class GzipCompressorInputStream
extends CompressorInputStream

Implements the "gz" compression format as an input stream. This classes wraps the standard java classes for working with gz.


Constructor Summary
GzipCompressorInputStream(java.io.InputStream inputStream)
          Constructs a new GZip compressed input stream by the referenced InputStream.
 
Method Summary
 int read()
           
 
Methods inherited from class org.apache.commons.compress.compressors.CompressorInputStream
count, getCount
 
Methods inherited from class java.io.InputStream
available, close, mark, markSupported, read, read, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GzipCompressorInputStream

public GzipCompressorInputStream(java.io.InputStream inputStream)
                          throws java.io.IOException
Constructs a new GZip compressed input stream by the referenced InputStream.

Parameters:
inputStream - the InputStream from which this object should be created of
Throws:
java.io.IOException - if the stream could not be created
Method Detail

read

public int read()
         throws java.io.IOException
Specified by:
read in class java.io.InputStream
Throws:
java.io.IOException


Copyright © 2001-2011 Apache Software Foundation. All Rights Reserved.