Save This Page
Home » apache-tomcat-6.0.16-src » org.apache » catalina » util » [javadoc | source]
org.apache.catalina.util
public class: IOTools [javadoc | source]
java.lang.Object
   org.apache.catalina.util.IOTools
Contains commonly needed I/O-related methods
Field Summary
protected static final  int DEFAULT_BUFFER_SIZE     
Method from org.apache.catalina.util.IOTools Summary:
flow,   flow,   flow,   flow
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.catalina.util.IOTools Detail:
 public static  void flow(Reader reader,
    Writer writer) throws IOException 
 public static  void flow(InputStream is,
    OutputStream os) throws IOException 
 public static  void flow(Reader reader,
    Writer writer,
    char[] buf) throws IOException 
    Read input from reader and write it to writer until there is no more input from reader.
 public static  void flow(InputStream is,
    OutputStream os,
    byte[] buf) throws IOException 
    Read input from input stream and write it to output stream until there is no more input from input stream.