public final class IOUtil
extends java.lang.Object
This class provides static utility methods for input/output operations, particularly buffered
copying between sources (InputStream, Reader, String and
byte[]) and destinations (OutputStream, Writer,
String and byte[]).
Unless otherwise noted, these copy methods do not flush or close the
streams. Often, doing so would require making non-portable assumptions about the streams' origin
and further use. This means that both streams' close() methods must be called after
copying. if one omits this step, then the stream resources (sockets, file descriptors) are
released when the associated Stream is garbage-collected. It is not a good idea to rely on this
mechanism. For a good overview of the distinction between "memory management" and "resource
management", see this
UnixReview article
For each copy method, a variant is provided that allows the caller to specify the
buffer size (the default is 4k). As the buffer size can have a fairly large impact on speed, this
may be worth tweaking. Often "large buffer -> faster" does not hold, even for large data
transfers.
For byte-to-char methods, a copy variant allows the encoding to be selected
(otherwise the platform default is used).
The copy methods use an internal buffer when copying. It is therefore advisable
not to deliberately wrap the stream arguments to the copy methods in
Buffered* streams. For example, don't do the
following:
copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
The rationale is as follows:
Imagine that an InputStream's read() is a very expensive operation, which would usually suggest
wrapping in a BufferedInputStream. The BufferedInputStream works by issuing infrequent
InputStream.read(byte[] b, int off, int len) requests on the underlying InputStream, to
fill an internal buffer, from which further read requests can inexpensively get
their data (until the buffer runs out).
However, the copy methods do the same thing, keeping an internal buffer,
populated by InputStream.read(byte[] b, int off, int len) requests. Having two buffers
(or three if the destination stream is also buffered) is pointless, and the unnecessary buffer
management hurts performance slightly (about 3%, according to some simple experiments).
| Modifier and Type | Method and Description |
|---|---|
static void |
close(java.nio.channels.Channel channel)
Closes a channel.
|
static void |
close(java.io.InputStream inputStream)
Closes the input stream.
|
static void |
close(java.io.OutputStream outputStream)
Closes the output stream.
|
static void |
close(java.io.Reader reader)
Closes the reader.
|
static void |
close(java.io.Writer writer)
Closes the writer.
|
static boolean |
contentEquals(java.io.InputStream input1,
java.io.InputStream input2)
Compare the contents of two Streams to determine if they are equal or not.
|
static void |
copy(byte[] input,
java.io.OutputStream output)
Copy bytes from a
byte[] to an OutputStream. |
static void |
copy(byte[] input,
java.io.Writer output)
Copy and convert bytes from a
byte[] to chars on a
Writer. |
static void |
copy(byte[] input,
java.io.Writer output,
int bufferSize)
Copy and convert bytes from a
byte[] to chars on a
Writer. |
static void |
copy(byte[] input,
java.io.Writer output,
java.lang.String encoding)
Copy and convert bytes from a
byte[] to chars on a
Writer, using the specified encoding. |
static void |
copy(byte[] input,
java.io.Writer output,
java.lang.String encoding,
int bufferSize)
Copy and convert bytes from a
byte[] to chars on a
Writer, using the specified encoding. |
static void |
copy(java.io.InputStream input,
java.io.OutputStream output)
Copy bytes from an
InputStream to an OutputStream. |
static void |
copy(java.io.InputStream input,
java.io.OutputStream output,
int bufferSize)
Copy bytes from an
InputStream to an OutputStream. |
static void |
copy(java.io.InputStream input,
java.io.Writer output)
Copy and convert bytes from an
InputStream to chars on a
Writer. |
static void |
copy(java.io.InputStream input,
java.io.Writer output,
int bufferSize)
Copy and convert bytes from an
InputStream to chars on a
Writer. |
static void |
copy(java.io.InputStream input,
java.io.Writer output,
java.lang.String encoding)
Copy and convert bytes from an
InputStream to chars on a
Writer, using the specified encoding. |
static void |
copy(java.io.InputStream input,
java.io.Writer output,
java.lang.String encoding,
int bufferSize)
Copy and convert bytes from an
InputStream to chars on a
Writer, using the specified encoding. |
static void |
copy(java.io.Reader input,
java.io.OutputStream output)
Serialize chars from a
Reader to bytes on an OutputStream, and
flush the OutputStream. |
static void |
copy(java.io.Reader input,
java.io.OutputStream output,
int bufferSize)
Serialize chars from a
Reader to bytes on an OutputStream, and
flush the OutputStream. |
static void |
copy(java.io.Reader input,
java.io.Writer output)
Copy chars from a
Reader to a Writer. |
static void |
copy(java.io.Reader input,
java.io.Writer output,
int bufferSize)
Copy chars from a
Reader to a Writer. |
static void |
copy(java.lang.String input,
java.io.OutputStream output)
Serialize chars from a
String to bytes on an OutputStream, and
flush the OutputStream. |
static void |
copy(java.lang.String input,
java.io.OutputStream output,
int bufferSize)
Serialize chars from a
String to bytes on an OutputStream, and
flush the OutputStream. |
static void |
copy(java.lang.String input,
java.io.Writer output)
Copy chars from a
String to a Writer. |
static byte[] |
toByteArray(java.io.InputStream input)
Get the contents of an
InputStream as a byte[]. |
static byte[] |
toByteArray(java.io.InputStream input,
int bufferSize)
Get the contents of an
InputStream as a byte[]. |
static byte[] |
toByteArray(java.io.Reader input)
Get the contents of a
Reader as a byte[]. |
static byte[] |
toByteArray(java.io.Reader input,
int bufferSize)
Get the contents of a
Reader as a byte[]. |
static byte[] |
toByteArray(java.lang.String input)
Get the contents of a
String as a byte[]. |
static byte[] |
toByteArray(java.lang.String input,
int bufferSize)
Get the contents of a
String as a byte[]. |
static java.lang.String |
toString(byte[] input)
Get the contents of a
byte[] as a String. |
static java.lang.String |
toString(byte[] input,
int bufferSize)
Get the contents of a
byte[] as a String. |
static java.lang.String |
toString(byte[] input,
java.lang.String encoding)
Get the contents of a
byte[] as a String. |
static java.lang.String |
toString(byte[] input,
java.lang.String encoding,
int bufferSize)
Get the contents of a
byte[] as a String. |
static java.lang.String |
toString(java.io.InputStream input)
Get the contents of an
InputStream as a String. |
static java.lang.String |
toString(java.io.InputStream input,
int bufferSize)
Get the contents of an
InputStream as a String. |
static java.lang.String |
toString(java.io.InputStream input,
java.lang.String encoding)
Get the contents of an
InputStream as a String. |
static java.lang.String |
toString(java.io.InputStream input,
java.lang.String encoding,
int bufferSize)
Get the contents of an
InputStream as a String. |
static java.lang.String |
toString(java.io.Reader input)
Get the contents of a
Reader as a String. |
static java.lang.String |
toString(java.io.Reader input,
int bufferSize)
Get the contents of a
Reader as a String. |
public static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.OutputStream output)
throws java.io.IOException
InputStream to an OutputStream.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.OutputStream output,
int bufferSize)
throws java.io.IOException
InputStream to an OutputStream.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.Reader input,
@Nonnull
java.io.Writer output)
throws java.io.IOException
Reader to a Writer.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.Reader input,
@Nonnull
java.io.Writer output,
int bufferSize)
throws java.io.IOException
Reader to a Writer.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.Writer output)
throws java.io.IOException
InputStream to chars on a
Writer.
The platform's default encoding is used for the byte-to-char conversion.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.Writer output,
int bufferSize)
throws java.io.IOException
InputStream to chars on a
Writer.
The platform's default encoding is used for the byte-to-char conversion.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.Writer output,
@Nonnull
java.lang.String encoding)
throws java.io.IOException
InputStream to chars on a
Writer, using the specified encoding.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.InputStream input,
@Nonnull
java.io.Writer output,
@Nonnull
java.lang.String encoding,
int bufferSize)
throws java.io.IOException
InputStream to chars on a
Writer, using the specified encoding.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.InputStream input)
throws java.io.IOException
InputStream as a String.
The platform's default encoding is used for the byte-to-char conversion.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.InputStream input,
int bufferSize)
throws java.io.IOException
InputStream as a String.
The platform's default encoding is used for the byte-to-char conversion.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.InputStream input,
@Nonnull
java.lang.String encoding)
throws java.io.IOException
InputStream as a String.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.InputStream input,
@Nonnull
java.lang.String encoding,
int bufferSize)
throws java.io.IOException
InputStream as a String.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.io.InputStream input)
throws java.io.IOException
InputStream as a byte[].java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.io.InputStream input,
int bufferSize)
throws java.io.IOException
InputStream as a byte[].bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.Reader input,
@Nonnull
java.io.OutputStream output)
throws java.io.IOException
Reader to bytes on an OutputStream, and
flush the OutputStream.java.io.IOExceptionpublic static void copy(@Nonnull
java.io.Reader input,
@Nonnull
java.io.OutputStream output,
int bufferSize)
throws java.io.IOException
Reader to bytes on an OutputStream, and
flush the OutputStream.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.Reader input)
throws java.io.IOException
Reader as a String.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
java.io.Reader input,
int bufferSize)
throws java.io.IOException
Reader as a String.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.io.Reader input)
throws java.io.IOException
Reader as a byte[].java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.io.Reader input,
int bufferSize)
throws java.io.IOException
Reader as a byte[].bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.lang.String input,
@Nonnull
java.io.OutputStream output)
throws java.io.IOException
String to bytes on an OutputStream, and
flush the OutputStream.java.io.IOExceptionpublic static void copy(@Nonnull
java.lang.String input,
@Nonnull
java.io.OutputStream output,
int bufferSize)
throws java.io.IOException
String to bytes on an OutputStream, and
flush the OutputStream.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
java.lang.String input,
@Nonnull
java.io.Writer output)
throws java.io.IOException
String to a Writer.java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.lang.String input)
throws java.io.IOException
String as a byte[].java.io.IOException@Nonnull
public static byte[] toByteArray(@Nonnull
java.lang.String input,
int bufferSize)
throws java.io.IOException
String as a byte[].bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
byte[] input,
@Nonnull
java.io.Writer output)
throws java.io.IOException
byte[] to chars on a
Writer.
The platform's default encoding is used for the byte-to-char conversion.java.io.IOExceptionpublic static void copy(@Nonnull
byte[] input,
@Nonnull
java.io.Writer output,
int bufferSize)
throws java.io.IOException
byte[] to chars on a
Writer.
The platform's default encoding is used for the byte-to-char conversion.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
byte[] input,
@Nonnull
java.io.Writer output,
java.lang.String encoding)
throws java.io.IOException
byte[] to chars on a
Writer, using the specified encoding.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.java.io.IOExceptionpublic static void copy(@Nonnull
byte[] input,
@Nonnull
java.io.Writer output,
@Nonnull
java.lang.String encoding,
int bufferSize)
throws java.io.IOException
byte[] to chars on a
Writer, using the specified encoding.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
byte[] input)
throws java.io.IOException
byte[] as a String.
The platform's default encoding is used for the byte-to-char conversion.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
byte[] input,
int bufferSize)
throws java.io.IOException
byte[] as a String.
The platform's default encoding is used for the byte-to-char conversion.bufferSize - Size of internal buffer to use.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
byte[] input,
@Nonnull
java.lang.String encoding)
throws java.io.IOException
byte[] as a String.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.java.io.IOException@Nonnull
public static java.lang.String toString(@Nonnull
byte[] input,
@Nonnull
java.lang.String encoding,
int bufferSize)
throws java.io.IOException
byte[] as a String.encoding - The name of a supported character encoding. See the
IANA
Charset Registry for a list of valid encoding types.bufferSize - Size of internal buffer to use.java.io.IOExceptionpublic static void copy(@Nonnull
byte[] input,
@Nonnull
java.io.OutputStream output)
throws java.io.IOException
byte[] to an OutputStream.java.io.IOExceptionpublic static boolean contentEquals(@Nonnull
java.io.InputStream input1,
@Nonnull
java.io.InputStream input2)
throws java.io.IOException
input1 - the first streaminput2 - the second streamjava.io.IOExceptionpublic static void close(@Nullable
java.nio.channels.Channel channel)
channel - The stream to close.public static void close(@Nullable
java.io.InputStream inputStream)
inputStream - The stream to close.public static void close(@Nullable
java.io.OutputStream outputStream)
outputStream - The stream to close.public static void close(@Nullable
java.io.Reader reader)
reader - The reader to close.public static void close(@Nullable
java.io.Writer writer)
writer - The writer to close.Copyright © 2013. All Rights Reserved.