Class FramedLZ4CompressorOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.commons.compress.compressors.CompressorOutputStream
-
- org.apache.commons.compress.compressors.lz4.FramedLZ4CompressorOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class FramedLZ4CompressorOutputStream extends CompressorOutputStream
CompressorOutputStream for the LZ4 frame format.Based on the "spec" in the version "1.5.1 (31/03/2015)"
- Since:
- 1.14
- See Also:
- LZ4 Frame Format Description
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFramedLZ4CompressorOutputStream.BlockSizeThe block sizes supported by the format.static classFramedLZ4CompressorOutputStream.ParametersParameters of the LZ4 frame format.
-
Constructor Summary
Constructors Constructor Description FramedLZ4CompressorOutputStream(OutputStream out)Constructs a new output stream that compresses data using the LZ4 frame format using the default block size of 4MB.FramedLZ4CompressorOutputStream(OutputStream out, FramedLZ4CompressorOutputStream.Parameters params)Constructs a new output stream that compresses data using the LZ4 frame format using the given block size.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinish()Compresses all remaining data and writes it to the stream, doesn't close the underlying stream.voidwrite(byte[] data, int off, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
flush, nullOutputStream, write
-
-
-
-
Constructor Detail
-
FramedLZ4CompressorOutputStream
public FramedLZ4CompressorOutputStream(OutputStream out) throws IOException
Constructs a new output stream that compresses data using the LZ4 frame format using the default block size of 4MB.- Parameters:
out- the OutputStream to which to write the compressed data- Throws:
IOException- if writing the signature fails
-
FramedLZ4CompressorOutputStream
public FramedLZ4CompressorOutputStream(OutputStream out, FramedLZ4CompressorOutputStream.Parameters params) throws IOException
Constructs a new output stream that compresses data using the LZ4 frame format using the given block size.- Parameters:
out- the OutputStream to which to write the compressed dataparams- the parameters to use- Throws:
IOException- if writing the signature fails
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] data, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
finish
public void finish() throws IOExceptionCompresses all remaining data and writes it to the stream, doesn't close the underlying stream.- Throws:
IOException- if an error occurs
-
-