Java org.apache.commons.compress.compressors CompressorStreamFactory fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.compressors CompressorStreamFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.compressors CompressorStreamFactory.

The text is from its open source code.

Implementation

org.apache.commons.compress.compressors.CompressorStreamFactory has the following implementations.
Click this link to see all its implementation.

Field

StringBZIP2
Constant used to identify the BZIP2 compression algorithm.
StringGZIP
Constant used to identify the GZIP compression algorithm.

Constructor

Method

CompressorInputStreamcreateCompressorInputStream(final String name, final InputStream in)
Create a compressor input stream from a compressor name and an input stream.
CompressorInputStreamcreateCompressorInputStream(final InputStream in)
Create an compressor input stream from an input stream, autodetecting the compressor type from the first few bytes of the stream.
CompressorOutputStreamcreateCompressorOutputStream(final String name, final OutputStream out)
Create an compressor output stream from an compressor name and an input stream.