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(outputStream, 6).outputStream - the stream to wrapIOException - on errorpublic 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.
outputStream - the stream to wrappreset - the presetIOException - on errorpublic void close() throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOExceptionpublic void finish() throws IOException
IOException - on errorpublic 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 write(byte[] buf, int off, int len) throws IOException
write in class OutputStreamIOExceptionpublic void write(int b) throws IOException
write in class OutputStreamIOExceptionCopyright © 2002–2022 The Apache Software Foundation. All rights reserved.