Uses of Class
org.apache.commons.compress.CompressException

Packages that use CompressException
org.apache.commons.compress   
org.apache.commons.compress.compressors.bzip2 Streams that compress and decompress the BZip2 format (without the file header chars). 
 

Uses of CompressException in org.apache.commons.compress
 

Methods in org.apache.commons.compress that throw CompressException
 InputStream AbstractCompressor.compress(File input)
           
 InputStream Compressor.compress(File input)
          Compresses this file and returns an InputStream to the compressed File
 InputStream AbstractCompressor.compress(InputStream input)
           
 InputStream Compressor.compress(InputStream input)
          Compresses this InputStream and returns an InputStream to the compressed file
 void AbstractCompressor.compressTo(File input, File output)
           
 void Compressor.compressTo(File input, File output)
          Creates the file "output" with the compressed content of file "input"
 void Compressor.compressTo(InputStream input, OutputStream output)
          Compresses the input stream and writes the compressed bytes to the output stream.
 void AbstractCompressor.compressToHere(File input)
           
 void Compressor.compressToHere(File input)
          Compresses the file input and creates a file in the same directory with the default file extension in its name.
 InputStream AbstractCompressor.decompress(File input)
           
 InputStream Compressor.decompress(File input)
          Decompresses a file and returns an InputStream
 InputStream AbstractCompressor.decompress(InputStream input)
           
 InputStream Compressor.decompress(InputStream input)
          Decompresses a file and returns an InputStream
 void AbstractCompressor.decompressTo(File input, File output)
           
 void Compressor.decompressTo(File input, File output)
          Decompresses this file and writes the decompressed byte to the output file
 void Compressor.decompressTo(InputStream input, OutputStream output)
          Decompresses this file and writes the decompressed file to the output-stream
static Compressor CompressorFactory.getInstance(File file)
          Returns an archiver, filled with an existing archive.
static Compressor CompressorFactory.getInstance(String compressorName)
          Returns an empty Compressor, if an matching compressor could be found within this factory.
static void CompressorFactory.registerCompressor(Class clazz)
          Registers a new archiver in the factory.
static void CompressorFactory.registerCompressor(String className)
          Registers a new archiver in the factory.
 

Uses of CompressException in org.apache.commons.compress.compressors.bzip2
 

Methods in org.apache.commons.compress.compressors.bzip2 that throw CompressException
 void BZip2Compressor.compressTo(InputStream in, OutputStream out)
           
 void BZip2Compressor.decompressTo(InputStream in, OutputStream out)
           
 



Copyright © 2011 Apache Software Foundation. All Rights Reserved.