org.apache.commons.compress.compressors.xz
public class XZCompressorOutputStream extends CompressorOutputStream
| Constructor and Description |
|---|
XZCompressorOutputStream(OutputStream outputStream)
Creates a new XZ compressor using the default LZMA2 options.
|
XZCompressorOutputStream(OutputStream outputStream,
int preset)
Creates a new XZ compressor using the specified LZMA2 preset level.
|
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
finish()
Finishes compression without closing the underlying stream.
|
void |
flush()
Flushes the encoder and calls
outputStream.flush(). |
void |
write(byte[] buf,
int off,
int len) |
void |
write(int b) |
writepublic XZCompressorOutputStream(OutputStream outputStream) throws IOException
XZCompressorOutputStream(6).IOExceptionpublic XZCompressorOutputStream(OutputStream outputStream, int preset) throws IOException
The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6.
The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively.
IOExceptionpublic void write(int b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] buf,
int off,
int len)
throws IOException
write in class OutputStreamIOExceptionpublic void flush()
throws IOException
outputStream.flush().
All buffered pending data will then be decompressible from
the output stream. Calling this function very often may increase
the compressed file size a lot.flush in interface Flushableflush in class OutputStreamIOExceptionpublic void finish()
throws IOException
IOExceptionpublic void close()
throws IOException
close in interface Closeableclose in class OutputStreamIOExceptionCopyright © 2014 The Apache Software Foundation. All rights reserved.