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
LZMA compressor.
- Since:
- 1.13
-
Constructor Summary
ConstructorsConstructorDescriptionLZMACompressorOutputStream(OutputStream outputStream) Creates a LZMA compressor. -
Method Summary
Methods inherited from class java.io.OutputStream
write
-
Constructor Details
-
LZMACompressorOutputStream
Creates a LZMA compressor.- Parameters:
outputStream- the stream to wrap- Throws:
IOException- on error
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
finish
Finishes compression without closing the underlying stream. No more data can be written to this stream after finishing.- Throws:
IOException- on error
-
flush
Doesn't do anything asLZMAOutputStreamdoesn't support flushing.- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
write
- Overrides:
writein classOutputStream- Throws:
IOException
-
write
- Specified by:
writein classOutputStream- Throws:
IOException
-