public class IOTools extends Object
Modifier and Type | Field and Description |
---|---|
protected static int |
DEFAULT_BUFFER_SIZE |
Modifier and Type | Method and Description |
---|---|
static void |
flow(InputStream is,
OutputStream os)
Read input from input stream and write it to output stream until there is
no more input from input stream using a new buffer of the default size
(4kB).
|
static void |
flow(Reader reader,
Writer writer)
Read input from reader and write it to writer until there is no more
input from reader.
|
static void |
flow(Reader reader,
Writer writer,
char[] buf)
Read input from reader and write it to writer until there is no more
input from reader.
|
protected static final int DEFAULT_BUFFER_SIZE
public static void flow(Reader reader, Writer writer, char[] buf) throws IOException
reader
- the reader to read from.writer
- the writer to write to.buf
- the char array to use as a bufferIOException
- IO errorpublic static void flow(Reader reader, Writer writer) throws IOException
reader
- the reader to read from.writer
- the writer to write to.IOException
- IO errorflow( Reader, Writer, char[] )
public static void flow(InputStream is, OutputStream os) throws IOException
is
- input stream the input stream to read from.os
- output stream the output stream to write to.IOException
- If an I/O error occurs during the copyCopyright © 2000-2016 Apache Software Foundation. All Rights Reserved.