public class ChunkedWriter
extends java.io.FilterWriter
Constructor and Description |
---|
ChunkedWriter(java.io.Writer writer)
Creates a new writer that uses a chunk size of
DEFAULT_CHUNK_SIZE |
ChunkedWriter(java.io.Writer writer,
int chunkSize)
Creates a new writer that uses the specified chunk size.
|
Modifier and Type | Method and Description |
---|---|
void |
write(char[] data,
int srcOffset,
int length)
writes the data buffer in chunks to the underlying writer
|
public ChunkedWriter(java.io.Writer writer, int chunkSize)
writer
- the writer to wrapchunkSize
- the chunk size to use; must be a positive number.java.lang.IllegalArgumentException
- if the chunk size is <= 0public ChunkedWriter(java.io.Writer writer)
DEFAULT_CHUNK_SIZE
writer
- the writer to wrappublic void write(char[] data, int srcOffset, int length) throws java.io.IOException
write
in class java.io.FilterWriter
data
- The datasrcOffset
- the offsetlength
- the number of bytes to writejava.io.IOException
- upon error"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"