Class IOUtils
This class provides static utility methods for input/output operations.
- closeQuietly - these methods close a stream ignoring nulls and exceptions
- toXxx/read - these methods read data from a stream
- write - these methods write data to a stream
- copy - these methods copy all the data from one stream to another
- contentEquals - these methods compare the content of two streams
The byte-to-char methods and char-to-byte methods involve a conversion step. Two methods are provided in each case, one that uses the platform default encoding and the other which allows you to specify an encoding. You are encouraged to always specify an encoding because relying on the platform default can lead to unexpected results, for example when moving from development to production.
All the methods in this class that read a stream are buffered internally.
This means that there is no cause to use a BufferedInputStream
or BufferedReader. The default buffer size of 4K has been shown
to be efficient in tests.
Wherever possible, the methods in this class do not flush or close the stream. This is to avoid making non-portable assumptions about the streams' origin and further use. Thus the caller is still responsible for closing streams after use.
Origin of code: Excalibur.
- Version:
- $Id: IOUtils.java 1304177 2012-03-23 03:36:44Z ggregory $
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final intThe default buffer size (4096) to use forcopyLarge(InputStream, OutputStream)andcopyLarge(Reader, Writer)static final charThe system directory separator character.static final charThe Unix directory separator character.static final charThe Windows directory separator character.private static final intstatic final StringThe system line separator string.static final StringThe Unix line separator string.static final StringThe Windows line separator string. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcloseQuietly(Closeable closeable) Unconditionally close aCloseable.static voidcloseQuietly(InputStream input) Unconditionally close anInputStream.static voidcloseQuietly(OutputStream output) Unconditionally close anOutputStream.static booleancontentEquals(InputStream input1, InputStream input2) Compare the contents of two Streams to determine if they are equal or not.static intcopy(InputStream input, OutputStream output) Copy bytes from anInputStreamto anOutputStream.static voidcopy(InputStream input, Writer output) Copy bytes from anInputStreamto chars on aWriterusing the default character encoding of the platform.static voidcopy(InputStream input, Writer output, String encoding) Copy bytes from anInputStreamto chars on aWriterusing the specified character encoding.static intCopy chars from aReaderto aWriter.static longcopyLarge(InputStream input, OutputStream output) Copy bytes from a large (over 2GB)InputStreamto anOutputStream.static longcopyLarge(InputStream input, OutputStream output, byte[] buffer) Copy bytes from a large (over 2GB)InputStreamto anOutputStream.static longCopy chars from a large (over 2GB)Readerto aWriter.static longCopy chars from a large (over 2GB)Readerto aWriter.static byte[]toByteArray(InputStream input) Get the contents of anInputStreamas abyte[].static StringtoString(InputStream input, String encoding) Get the contents of anInputStreamas a String using the specified character encoding.
-
Field Details
-
EOF
private static final int EOF- See Also:
-
DIR_SEPARATOR_UNIX
public static final char DIR_SEPARATOR_UNIXThe Unix directory separator character.- See Also:
-
DIR_SEPARATOR_WINDOWS
public static final char DIR_SEPARATOR_WINDOWSThe Windows directory separator character.- See Also:
-
DIR_SEPARATOR
public static final char DIR_SEPARATORThe system directory separator character. -
LINE_SEPARATOR_UNIX
-
LINE_SEPARATOR_WINDOWS
-
LINE_SEPARATOR
The system line separator string. -
DEFAULT_BUFFER_SIZE
private static final int DEFAULT_BUFFER_SIZEThe default buffer size (4096) to use forcopyLarge(InputStream, OutputStream)andcopyLarge(Reader, Writer)- See Also:
-
-
Constructor Details
-
IOUtils
public IOUtils()Instances should NOT be constructed in standard programming.
-
-
Method Details
-
closeQuietly
Unconditionally close anInputStream.Equivalent to
InputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.Example code:
byte[] data = new byte[1024]; InputStream in = null; try { in = new FileInputStream("foo.txt"); in.read(data); in.close(); //close errors are handled } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(in); }- Parameters:
input- the InputStream to close, may be null or already closed
-
closeQuietly
Unconditionally close anOutputStream.Equivalent to
OutputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.Example code:
byte[] data = "Hello, World".getBytes(); OutputStream out = null; try { out = new FileOutputStream("foo.txt"); out.write(data); out.close(); //close errors are handled } catch (IOException e) { // error handling } finally { IOUtils.closeQuietly(out); }- Parameters:
output- the OutputStream to close, may be null or already closed
-
closeQuietly
Unconditionally close aCloseable.Equivalent to
Closeable.close(), except any exceptions will be ignored. This is typically used in finally blocks.Example code:
Closeable closeable = null; try { closeable = new FileReader("foo.txt"); // process closeable closeable.close(); } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(closeable); }- Parameters:
closeable- the object to close, may be null or already closed- Since:
- 2.0
-
toByteArray
Get the contents of anInputStreamas abyte[].This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read from- Returns:
- the requested byte array
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
toString
Get the contents of anInputStreamas a String using the specified character encoding.Character encoding names can be found at IANA.
This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromencoding- the encoding to use, null means platform default- Returns:
- the requested String
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
copy
Copy bytes from anInputStreamto anOutputStream.This method buffers the input internally, so there is no need to use a
BufferedInputStream.Large streams (over 2GB) will return a bytes copied value of
-1after the copy has completed since the correct number of bytes cannot be returned as an int. For large streams use thecopyLarge(InputStream, OutputStream)method.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write to- Returns:
- the number of bytes copied, or -1 if > Integer.MAX_VALUE
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copyLarge
Copy bytes from a large (over 2GB)InputStreamto anOutputStream.This method buffers the input internally, so there is no need to use a
BufferedInputStream.The buffer size is given by
DEFAULT_BUFFER_SIZE.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write to- Returns:
- the number of bytes copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.3
-
copyLarge
public static long copyLarge(InputStream input, OutputStream output, byte[] buffer) throws IOException Copy bytes from a large (over 2GB)InputStreamto anOutputStream.This method uses the provided buffer, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write tobuffer- the buffer to use for the copy- Returns:
- the number of bytes copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 2.2
-
copy
Copy bytes from anInputStreamto chars on aWriterusing the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedInputStream.This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto write to- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copy
Copy bytes from anInputStreamto chars on aWriterusing the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.Character encoding names can be found at IANA.
This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto write toencoding- the encoding to use, null means platform default- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copy
Copy chars from aReaderto aWriter.This method buffers the input internally, so there is no need to use a
BufferedReader.Large streams (over 2GB) will return a chars copied value of
-1after the copy has completed since the correct number of chars cannot be returned as an int. For large streams use thecopyLarge(Reader, Writer)method.- Parameters:
input- theReaderto read fromoutput- theWriterto write to- Returns:
- the number of characters copied, or -1 if > Integer.MAX_VALUE
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copyLarge
Copy chars from a large (over 2GB)Readerto aWriter.This method buffers the input internally, so there is no need to use a
BufferedReader.The buffer size is given by
DEFAULT_BUFFER_SIZE.- Parameters:
input- theReaderto read fromoutput- theWriterto write to- Returns:
- the number of characters copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.3
-
copyLarge
Copy chars from a large (over 2GB)Readerto aWriter.This method uses the provided buffer, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromoutput- theWriterto write tobuffer- the buffer to be used for the copy- Returns:
- the number of characters copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 2.2
-
contentEquals
Compare the contents of two Streams to determine if they are equal or not.This method buffers the input internally using
BufferedInputStreamif they are not already buffered.- Parameters:
input1- the first streaminput2- the second stream- Returns:
- true if the content of the streams are equal or they both don't exist, false otherwise
- Throws:
NullPointerException- if either input is nullIOException- if an I/O error occurs
-