Class LZMACompressorOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.compress.compressors.CompressorOutputStream
-
- org.apache.commons.compress.compressors.lzma.LZMACompressorOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class LZMACompressorOutputStream extends CompressorOutputStream
LZMA compressor.- Since:
- 1.13
-
-
Constructor Summary
Constructors Constructor Description LZMACompressorOutputStream(OutputStream outputStream)Creates a LZMA compressor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinish()Finishes compression without closing the underlying stream.voidflush()Doesn't do anything asLZMAOutputStreamdoesn't support flushing.voidwrite(byte[] buf, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
nullOutputStream, write
-
-
-
-
Constructor Detail
-
LZMACompressorOutputStream
public LZMACompressorOutputStream(OutputStream outputStream) throws IOException
Creates a LZMA compressor.- Parameters:
outputStream- the stream to wrap- Throws:
IOException- on error
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] buf, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOExceptionDoesn't do anything asLZMAOutputStreamdoesn't support flushing.- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
finish
public void finish() throws IOExceptionFinishes compression without closing the underlying stream. No more data can be written to this stream after finishing.- Throws:
IOException- on error
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
-