Java org.apache.commons.io CopyUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io CopyUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io CopyUtils.

The text is from its open source code.

Method

voidcopy(byte[] input, OutputStream output)
Copy bytes from a byte[] to an OutputStream.
voidcopy(byte[] input, Writer output)
Copy and convert bytes from a byte[] to chars on a Writer.
intcopy(InputStream input, OutputStream output)
Copy bytes from an InputStream to an OutputStream.
intcopy(Reader input, Writer output)
Copy chars from a Reader to a Writer.
voidcopy(InputStream input, Writer output)
Copy and convert bytes from an InputStream to chars on a Writer.
voidcopy(Reader input, OutputStream output)
Serialize chars from a Reader to bytes on an OutputStream, and flush the OutputStream.
voidcopy(String input, OutputStream output)
Serialize chars from a String to bytes on an OutputStream, and flush the OutputStream.
voidcopy(String input, Writer output)
Copy chars from a String to a Writer.
voidcopy(byte[] input, Writer output, String encoding)
Copy and convert bytes from a byte[] to chars on a Writer, using the specified encoding.
voidcopy(InputStream input, Writer output, String encoding)
Copy and convert bytes from an InputStream to chars on a Writer, using the specified encoding.