public class IOTools
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected static int |
DEFAULT_BUFFER_SIZE |
Modifier and Type | Method and Description |
---|---|
static void |
flow(java.io.InputStream is,
java.io.OutputStream os) |
static void |
flow(java.io.InputStream is,
java.io.OutputStream os,
byte[] buf)
Deprecated.
Unused. Will be removed in 8.5.x
|
static void |
flow(java.io.Reader reader,
java.io.Writer writer) |
static void |
flow(java.io.Reader reader,
java.io.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(java.io.Reader reader, java.io.Writer writer, char[] buf) throws java.io.IOException
reader
- the reader to read from.writer
- the writer to write to.buf
- the char array to use as a bufferjava.io.IOException
public static void flow(java.io.Reader reader, java.io.Writer writer) throws java.io.IOException
java.io.IOException
flow( Reader, Writer, char[] )
@Deprecated public static void flow(java.io.InputStream is, java.io.OutputStream os, byte[] buf) throws java.io.IOException
is
- input stream the input stream to read from.os
- output stream the output stream to write to.buf
- the byte array to use as a bufferjava.io.IOException
public static void flow(java.io.InputStream is, java.io.OutputStream os) throws java.io.IOException
java.io.IOException
flow( java.io.InputStream, java.io.OutputStream, byte[] )
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.