Uses of Class
org.apache.commons.compress.compressors.CompressorException
Package
Description
Provides a unified API and factories for dealing with compressed streams.
-
Uses of CompressorException in org.apache.commons.compress.compressors
Modifier and TypeMethodDescriptionCompressorStreamFactory.createCompressorInputStream
(InputStream in) Creates a compressor input stream from an input stream, auto-detecting the compressor type from the first few bytes of the stream.CompressorStreamFactory.createCompressorInputStream
(InputStream in, Set<String> compressorNames) Creates a compressor input stream from an input stream, auto-detecting the compressor type from the first few bytes of the stream while limiting the detected type to the provided set of compressor names.CompressorStreamFactory.createCompressorInputStream
(String name, InputStream in) Creates a compressor input stream from a compressor name and an input stream.CompressorStreamFactory.createCompressorInputStream
(String name, InputStream in, boolean actualDecompressConcatenated) CompressorStreamProvider.createCompressorInputStream
(String name, InputStream in, boolean decompressUntilEOF) Creates a compressor input stream from a compressor name and an input stream.CompressorStreamFactory.createCompressorOutputStream
(String name, OutputStream out) Creates a compressor output stream from a compressor name and an output stream.CompressorStreamProvider.createCompressorOutputStream
(String name, OutputStream out) Creates a compressor output stream from a compressor name and an output stream.static String
CompressorStreamFactory.detect
(InputStream inputStream) Detects the type of compressor stream.