| Package | Description | 
|---|---|
| org.apache.commons.compress.compressors | Provides a unified API and factories for dealing with
      compressed streams. | 
| Modifier and Type | Method and Description | 
|---|---|
| CompressorInputStream | CompressorStreamFactory. createCompressorInputStream(InputStream in)Create an compressor input stream from an input stream, autodetecting the
 compressor type from the first few bytes of the stream. | 
| CompressorInputStream | CompressorStreamFactory. createCompressorInputStream(String name,
                           InputStream in)Creates a compressor input stream from a compressor name and an input
 stream. | 
| CompressorInputStream | CompressorStreamProvider. createCompressorInputStream(String name,
                           InputStream in,
                           boolean decompressUntilEOF)Creates a compressor input stream from a compressor name and an input
 stream. | 
| CompressorInputStream | CompressorStreamFactory. createCompressorInputStream(String name,
                           InputStream in,
                           boolean actualDecompressConcatenated) | 
| CompressorOutputStream | CompressorStreamProvider. createCompressorOutputStream(String name,
                            OutputStream out)Creates a compressor output stream from an compressor name and an output
 stream. | 
| CompressorOutputStream | CompressorStreamFactory. createCompressorOutputStream(String name,
                            OutputStream out)Creates an compressor output stream from an compressor name and an output
 stream. | 
| static String | CompressorStreamFactory. detect(InputStream in)Try to detect the type of compressor stream. | 
Copyright © 2018 The Apache Software Foundation. All rights reserved.