Package org.apache.commons.io.output
Class ChunkedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- org.apache.commons.io.output.ChunkedOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class ChunkedOutputStream extends java.io.FilterOutputStream
OutputStream which breaks larger output blocks into chunks. Native code may need to copy the input array; if the write buffer is very large this can cause OOME.- Since:
- 2.5
-
-
Constructor Summary
Constructors Constructor Description ChunkedOutputStream(java.io.OutputStream stream)
Creates a new stream that uses a chunk size ofDEFAULT_CHUNK_SIZE
.ChunkedOutputStream(java.io.OutputStream stream, int chunkSize)
Creates a new stream that uses the specified chunk size.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] data, int srcOffset, int length)
Writes the data buffer in chunks to the underlying stream
-
-
-
Constructor Detail
-
ChunkedOutputStream
public ChunkedOutputStream(java.io.OutputStream stream, int chunkSize)
Creates a new stream that uses the specified chunk size.- Parameters:
stream
- the stream to wrapchunkSize
- the chunk size to use; must be a positive number.- Throws:
java.lang.IllegalArgumentException
- if the chunk size is <= 0
-
ChunkedOutputStream
public ChunkedOutputStream(java.io.OutputStream stream)
Creates a new stream that uses a chunk size ofDEFAULT_CHUNK_SIZE
.- Parameters:
stream
- the stream to wrap
-
-
Method Detail
-
write
public void write(byte[] data, int srcOffset, int length) throws java.io.IOException
Writes the data buffer in chunks to the underlying stream- Overrides:
write
in classjava.io.FilterOutputStream
- Parameters:
data
- the data to writesrcOffset
- the offsetlength
- the length of data to write- Throws:
java.io.IOException
- if an I/O error occurs.
-
-