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.
The various copy methods all delegate the actual copying to one of the following methods:
copyLarge(InputStream, OutputStream, byte[])
copyLarge(InputStream, OutputStream, long, long, byte[])
copyLarge(Reader, Writer, char[])
copyLarge(Reader, Writer, long, long, char[])
copy(InputStream, OutputStream)
calls copyLarge(InputStream, OutputStream)
which calls copy(InputStream, OutputStream, int)
which creates the buffer and calls
copyLarge(InputStream, OutputStream, byte[])
.
Applications can re-use buffers by using the underlying methods directly. This may improve performance for applications that need to do a lot of copying.
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.
Provenance: Excalibur.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
CR char '13'.static final int
The default buffer size (8192) to use in copy methods.static final char
The system directory separator character.static final char
The UNIX directory separator character ''/''.static final char
The Windows directory separator character ''\\''.static final byte[]
A singleton empty byte array.static final int
Represents the end-of-file (or stream) value -1.static final int
LF char '10'.static final String
Deprecated.static final String
The UNIX line separator string.static final String
The Windows line separator string. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic BufferedInputStream
buffer
(InputStream inputStream) Returns the given InputStream if it is already aBufferedInputStream
, otherwise creates a BufferedInputStream from the given InputStream.static BufferedInputStream
buffer
(InputStream inputStream, int size) Returns the given InputStream if it is already aBufferedInputStream
, otherwise creates a BufferedInputStream from the given InputStream.static BufferedOutputStream
buffer
(OutputStream outputStream) Returns the given OutputStream if it is already aBufferedOutputStream
, otherwise creates a BufferedOutputStream from the given OutputStream.static BufferedOutputStream
buffer
(OutputStream outputStream, int size) Returns the given OutputStream if it is already aBufferedOutputStream
, otherwise creates a BufferedOutputStream from the given OutputStream.static BufferedReader
Returns the given reader if it is already aBufferedReader
, otherwise creates a BufferedReader from the given reader.static BufferedReader
Returns the given reader if it is already aBufferedReader
, otherwise creates a BufferedReader from the given reader.static BufferedWriter
Returns the given Writer if it is already aBufferedWriter
, otherwise creates a BufferedWriter from the given Writer.static BufferedWriter
Returns the given Writer if it is already aBufferedWriter
, otherwise creates a BufferedWriter from the given Writer.static byte[]
Returns a new byte array of sizeDEFAULT_BUFFER_SIZE
.static byte[]
byteArray
(int size) Returns a new byte array of the given size.static void
Closes the givenCloseable
as a null-safe operation.static void
Closes the givenCloseable
s as null-safe operations.static void
close
(Closeable closeable, IOConsumer<IOException> consumer) Closes the givenCloseable
as a null-safe operation.static void
close
(URLConnection conn) Closes a URLConnection.static void
closeQuietly
(Closeable closeable) Closes aCloseable
unconditionally.static void
closeQuietly
(Closeable... closeables) Closes aCloseable
unconditionally.static void
closeQuietly
(Closeable closeable, Consumer<IOException> consumer) Closes the givenCloseable
as a null-safe operation while consuming IOException by the givenconsumer
.static void
closeQuietly
(InputStream input) Closes anInputStream
unconditionally.static void
closeQuietly
(OutputStream output) Closes anOutputStream
unconditionally.static void
closeQuietly
(Reader reader) Closes anReader
unconditionally.static void
closeQuietly
(Writer writer) Closes anWriter
unconditionally.static void
closeQuietly
(Iterable<Closeable> closeables) Closes an iterable ofCloseable
unconditionally.static void
closeQuietly
(ServerSocket serverSocket) Closes aServerSocket
unconditionally.static void
closeQuietly
(Socket socket) Closes aSocket
unconditionally.static void
closeQuietly
(Selector selector) Closes aSelector
unconditionally.static void
closeQuietly
(Stream<Closeable> closeables) Closes a stream ofCloseable
unconditionally.static long
consume
(InputStream input) Consumes bytes from aInputStream
and ignores them.static long
Consumes characters from aReader
and ignores them.static boolean
contentEquals
(InputStream input1, InputStream input2) Compares the contents of two Streams to determine if they are equal or not.static boolean
contentEquals
(Reader input1, Reader input2) Compares the contents of two Readers to determine if they are equal or not.static boolean
contentEqualsIgnoreEOL
(Reader reader1, Reader reader2) Compares the contents of two Readers to determine if they are equal or not, ignoring EOL characters.static QueueInputStream
copy
(ByteArrayOutputStream outputStream) Copies bytes from aByteArrayOutputStream
to aQueueInputStream
.static int
copy
(InputStream inputStream, OutputStream outputStream) Copies bytes from anInputStream
to anOutputStream
.static long
copy
(InputStream inputStream, OutputStream outputStream, int bufferSize) Copies bytes from anInputStream
to anOutputStream
using an internal buffer of the given size.static void
copy
(InputStream input, Writer writer) Deprecated.Usecopy(InputStream, Writer, Charset)
insteadstatic void
copy
(InputStream input, Writer writer, String inputCharsetName) Copies bytes from anInputStream
to chars on aWriter
using the specified character encoding.static void
copy
(InputStream input, Writer writer, Charset inputCharset) Copies bytes from anInputStream
to chars on aWriter
using the specified character encoding.static void
copy
(Reader reader, OutputStream output) Deprecated.Usecopy(Reader, OutputStream, Charset)
insteadstatic void
copy
(Reader reader, OutputStream output, String outputCharsetName) Copies chars from aReader
to bytes on anOutputStream
using the specified character encoding, and calling flush.static void
copy
(Reader reader, OutputStream output, Charset outputCharset) Copies chars from aReader
to bytes on anOutputStream
using the specified character encoding, and calling flush.static int
static long
copy
(Reader reader, Appendable output) Copies chars from aReader
to aAppendable
.static long
copy
(Reader reader, Appendable output, CharBuffer buffer) Copies chars from aReader
to anAppendable
.static long
Copies bytes from aURL
to anOutputStream
.static long
copy
(URL url, OutputStream outputStream) Copies bytes from aURL
to anOutputStream
.static long
copyLarge
(InputStream inputStream, OutputStream outputStream) Copies bytes from a large (over 2GB)InputStream
to anOutputStream
.static long
copyLarge
(InputStream inputStream, OutputStream outputStream, byte[] buffer) Copies bytes from a large (over 2GB)InputStream
to anOutputStream
.static long
copyLarge
(InputStream input, OutputStream output, long inputOffset, long length) Copies some or all bytes from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input bytes.static long
copyLarge
(InputStream input, OutputStream output, long inputOffset, long length, byte[] buffer) Copies some or all bytes from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input bytes.static long
static long
static long
Copies some or all chars from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input chars.static long
Copies some or all chars from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input chars.static int
length
(byte[] array) Returns the length of the given array in a null-safe manner.static int
length
(char[] array) Returns the length of the given array in a null-safe manner.static int
length
(CharSequence csq) Returns the length of the given CharSequence in a null-safe manner.static int
Returns the length of the given array in a null-safe manner.static LineIterator
lineIterator
(InputStream input, String charsetName) Returns an Iterator for the lines in anInputStream
, using the character encoding specified (or default encoding if null).static LineIterator
lineIterator
(InputStream input, Charset charset) Returns an Iterator for the lines in anInputStream
, using the character encoding specified (or default encoding if null).static LineIterator
lineIterator
(Reader reader) Returns an Iterator for the lines in aReader
.static int
read
(InputStream input, byte[] buffer) Reads bytes from an input stream.static int
read
(InputStream input, byte[] buffer, int offset, int length) Reads bytes from an input stream.static int
Reads characters from an input character stream.static int
Reads characters from an input character stream.static int
read
(ReadableByteChannel input, ByteBuffer buffer) Reads bytes from a ReadableByteChannel.static void
readFully
(InputStream input, byte[] buffer) Reads the requested number of bytes or fail if there are not enough left.static void
readFully
(InputStream input, byte[] buffer, int offset, int length) Reads the requested number of bytes or fail if there are not enough left.static byte[]
readFully
(InputStream input, int length) Reads the requested number of bytes or fail if there are not enough left.static void
Reads the requested number of characters or fail if there are not enough left.static void
Reads the requested number of characters or fail if there are not enough left.static void
readFully
(ReadableByteChannel input, ByteBuffer buffer) Reads the requested number of bytes or fail if there are not enough left.readLines
(InputStream input) Deprecated.UsereadLines(InputStream, Charset)
insteadreadLines
(InputStream input, String charsetName) Gets the contents of anInputStream
as a list of Strings, one entry per line, using the specified character encoding.readLines
(InputStream input, Charset charset) Gets the contents of anInputStream
as a list of Strings, one entry per line, using the specified character encoding.Gets the contents of aReader
as a list of Strings, one entry per line.readLines
(CharSequence csq) Gets the contents of aCharSequence
as a list of Strings, one entry per line.static byte[]
resourceToByteArray
(String name) Gets the contents of a resource as a byte array.static byte[]
resourceToByteArray
(String name, ClassLoader classLoader) Gets the contents of a resource as a byte array.static String
resourceToString
(String name, Charset charset) Gets the contents of a resource as a String using the specified character encoding.static String
resourceToString
(String name, Charset charset, ClassLoader classLoader) Gets the contents of a resource as a String using the specified character encoding.static URL
resourceToURL
(String name) Gets a URL pointing to the given resource.static URL
resourceToURL
(String name, ClassLoader classLoader) Gets a URL pointing to the given resource.static long
skip
(InputStream input, long skip) Skips bytes from an input byte stream.static long
skip
(InputStream input, long skip, Supplier<byte[]> skipBufferSupplier) Skips bytes from an input byte stream.static long
Skips characters from an input character stream.static long
skip
(ReadableByteChannel input, long toSkip) Skips bytes from a ReadableByteChannel.static void
skipFully
(InputStream input, long toSkip) Skips the requested number of bytes or fail if there are not enough left.static void
skipFully
(InputStream input, long toSkip, Supplier<byte[]> skipBufferSupplier) Skips the requested number of bytes or fail if there are not enough left.static void
Skips the requested number of characters or fail if there are not enough left.static void
skipFully
(ReadableByteChannel input, long toSkip) Skips the requested number of bytes or fail if there are not enough left.static InputStream
toBufferedInputStream
(InputStream input) Fetches entire contents of anInputStream
and represent same data as result InputStream.static InputStream
toBufferedInputStream
(InputStream input, int size) Fetches entire contents of anInputStream
and represent same data as result InputStream.static BufferedReader
toBufferedReader
(Reader reader) Returns the given reader if it is aBufferedReader
, otherwise creates a BufferedReader from the given reader.static BufferedReader
toBufferedReader
(Reader reader, int size) Returns the given reader if it is aBufferedReader
, otherwise creates a BufferedReader from the given reader.static byte[]
toByteArray
(InputStream inputStream) Gets the contents of anInputStream
as abyte[]
.static byte[]
toByteArray
(InputStream input, int size) Gets the contents of anInputStream
as abyte[]
.static byte[]
toByteArray
(InputStream input, long size) Gets contents of anInputStream
as abyte[]
.static byte[]
toByteArray
(Reader reader) Deprecated.UsetoByteArray(Reader, Charset)
insteadstatic byte[]
toByteArray
(Reader reader, String charsetName) Gets the contents of aReader
as abyte[]
using the specified character encoding.static byte[]
toByteArray
(Reader reader, Charset charset) Gets the contents of aReader
as abyte[]
using the specified character encoding.static byte[]
toByteArray
(String input) Deprecated.UseString.getBytes()
insteadstatic byte[]
toByteArray
(URI uri) Gets the contents of aURI
as abyte[]
.static byte[]
toByteArray
(URL url) Gets the contents of aURL
as abyte[]
.static byte[]
toByteArray
(URLConnection urlConnection) Gets the contents of aURLConnection
as abyte[]
.static char[]
toCharArray
(InputStream inputStream) Deprecated.UsetoCharArray(InputStream, Charset)
insteadstatic char[]
toCharArray
(InputStream inputStream, String charsetName) Gets the contents of anInputStream
as a character array using the specified character encoding.static char[]
toCharArray
(InputStream inputStream, Charset charset) Gets the contents of anInputStream
as a character array using the specified character encoding.static char[]
toCharArray
(Reader reader) Gets the contents of aReader
as a character array.static InputStream
toInputStream
(CharSequence input) Deprecated.UsetoInputStream(CharSequence, Charset)
insteadstatic InputStream
toInputStream
(CharSequence input, String charsetName) Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.static InputStream
toInputStream
(CharSequence input, Charset charset) Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.static InputStream
toInputStream
(String input) Deprecated.UsetoInputStream(String, Charset)
insteadstatic InputStream
toInputStream
(String input, String charsetName) Converts the specified string to an input stream, encoded as bytes using the specified character encoding.static InputStream
toInputStream
(String input, Charset charset) Converts the specified string to an input stream, encoded as bytes using the specified character encoding.static String
toString
(byte[] input) Deprecated.UseString(byte[])
insteadstatic String
Gets the contents of abyte[]
as a String using the specified character encoding.static String
toString
(InputStream input) Deprecated.UsetoString(InputStream, Charset)
insteadstatic String
toString
(InputStream input, String charsetName) Gets the contents of anInputStream
as a String using the specified character encoding.static String
toString
(InputStream input, Charset charset) Gets the contents of anInputStream
as a String using the specified character encoding.static String
Gets the contents of aReader
as a String.static String
Deprecated.UsetoString(URI, Charset)
insteadstatic String
Gets the contents at the given URI.static String
Gets the contents at the given URI.static String
Deprecated.UsetoString(URL, Charset)
insteadstatic String
Gets the contents at the given URL.static String
Gets the contents at the given URL.static String
toString
(IOSupplier<InputStream> input, Charset charset) Gets the contents of anInputStream
from a supplier as a String using the specified character encoding.static String
toString
(IOSupplier<InputStream> input, Charset charset, IOSupplier<String> defaultString) Gets the contents of anInputStream
from a supplier as a String using the specified character encoding.static void
write
(byte[] data, OutputStream output) Writes bytes from abyte[]
to anOutputStream
.static void
Deprecated.Usewrite(byte[], Writer, Charset)
insteadstatic void
Writes bytes from abyte[]
to chars on aWriter
using the specified character encoding.static void
Writes bytes from abyte[]
to chars on aWriter
using the specified character encoding.static void
write
(char[] data, OutputStream output) Deprecated.Usewrite(char[], OutputStream, Charset)
insteadstatic void
write
(char[] data, OutputStream output, String charsetName) Writes chars from achar[]
to bytes on anOutputStream
using the specified character encoding.static void
write
(char[] data, OutputStream output, Charset charset) Writes chars from achar[]
to bytes on anOutputStream
using the specified character encoding.static void
Writes chars from achar[]
to aWriter
static void
write
(CharSequence data, OutputStream output) Deprecated.Usewrite(CharSequence, OutputStream, Charset)
insteadstatic void
write
(CharSequence data, OutputStream output, String charsetName) Writes chars from aCharSequence
to bytes on anOutputStream
using the specified character encoding.static void
write
(CharSequence data, OutputStream output, Charset charset) Writes chars from aCharSequence
to bytes on anOutputStream
using the specified character encoding.static void
write
(CharSequence data, Writer writer) Writes chars from aCharSequence
to aWriter
.static void
write
(StringBuffer data, OutputStream output) Deprecated.static void
write
(StringBuffer data, OutputStream output, String charsetName) Deprecated.static void
write
(StringBuffer data, Writer writer) Deprecated.static void
write
(String data, OutputStream output) Deprecated.Usewrite(String, OutputStream, Charset)
insteadstatic void
write
(String data, OutputStream output, String charsetName) Writes chars from aString
to bytes on anOutputStream
using the specified character encoding.static void
write
(String data, OutputStream output, Charset charset) Writes chars from aString
to bytes on anOutputStream
using the specified character encoding.static void
static void
writeChunked
(byte[] data, OutputStream output) Writes bytes from abyte[]
to anOutputStream
using chunked writes.static void
writeChunked
(char[] data, Writer writer) Writes chars from achar[]
to aWriter
using chunked writes.static void
writeLines
(Collection<?> lines, String lineEnding, OutputStream output) Deprecated.static void
writeLines
(Collection<?> lines, String lineEnding, OutputStream output, String charsetName) Writes theObject.toString()
value of each item in a collection to anOutputStream
line by line, using the specified character encoding and the specified line ending.static void
writeLines
(Collection<?> lines, String lineEnding, OutputStream output, Charset charset) Writes theObject.toString()
value of each item in a collection to anOutputStream
line by line, using the specified character encoding and the specified line ending.static void
writeLines
(Collection<?> lines, String lineEnding, Writer writer) Writes theObject.toString()
value of each item in a collection to aWriter
line by line, using the specified line ending.static Writer
writer
(Appendable appendable) Returns the given Appendable if it is already aWriter
, otherwise creates a Writer wrapper around the given Appendable.
-
Field Details
-
CR
CR char '13'.- Since:
- 2.9.0
- See Also:
-
DEFAULT_BUFFER_SIZE
The default buffer size (8192) to use in copy methods.- See Also:
-
DIR_SEPARATOR
The system directory separator character. -
DIR_SEPARATOR_UNIX
The UNIX directory separator character ''/''.- See Also:
-
DIR_SEPARATOR_WINDOWS
The Windows directory separator character ''\\''.- See Also:
-
EMPTY_BYTE_ARRAY
A singleton empty byte array.- Since:
- 2.9.0
-
EOF
Represents the end-of-file (or stream) value -1.- Since:
- 2.5 (made public)
- See Also:
-
LF
LF char '10'.- Since:
- 2.9.0
- See Also:
-
LINE_SEPARATOR
Deprecated.The system line separator string. -
LINE_SEPARATOR_UNIX
The UNIX line separator string.- See Also:
-
LINE_SEPARATOR_WINDOWS
The Windows line separator string.- See Also:
-
-
Constructor Details
-
IOUtils
Deprecated.TODO Make private in 3.0.Instances should NOT be constructed in standard programming.
-
-
Method Details
-
buffer
Returns the given InputStream if it is already aBufferedInputStream
, otherwise creates a BufferedInputStream from the given InputStream.- Parameters:
inputStream
- the InputStream to wrap or return (not null)- Returns:
- the given InputStream or a new
BufferedInputStream
for the given InputStream - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given InputStream if it is already aBufferedInputStream
, otherwise creates a BufferedInputStream from the given InputStream.- Parameters:
inputStream
- the InputStream to wrap or return (not null)size
- the buffer size, if a new BufferedInputStream is created.- Returns:
- the given InputStream or a new
BufferedInputStream
for the given InputStream - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given OutputStream if it is already aBufferedOutputStream
, otherwise creates a BufferedOutputStream from the given OutputStream.- Parameters:
outputStream
- the OutputStream to wrap or return (not null)- Returns:
- the given OutputStream or a new
BufferedOutputStream
for the given OutputStream - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given OutputStream if it is already aBufferedOutputStream
, otherwise creates a BufferedOutputStream from the given OutputStream.- Parameters:
outputStream
- the OutputStream to wrap or return (not null)size
- the buffer size, if a new BufferedOutputStream is created.- Returns:
- the given OutputStream or a new
BufferedOutputStream
for the given OutputStream - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given reader if it is already aBufferedReader
, otherwise creates a BufferedReader from the given reader.- Parameters:
reader
- the reader to wrap or return (not null)- Returns:
- the given reader or a new
BufferedReader
for the given reader - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given reader if it is already aBufferedReader
, otherwise creates a BufferedReader from the given reader.- Parameters:
reader
- the reader to wrap or return (not null)size
- the buffer size, if a new BufferedReader is created.- Returns:
- the given reader or a new
BufferedReader
for the given reader - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given Writer if it is already aBufferedWriter
, otherwise creates a BufferedWriter from the given Writer.- Parameters:
writer
- the Writer to wrap or return (not null)- Returns:
- the given Writer or a new
BufferedWriter
for the given Writer - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
buffer
Returns the given Writer if it is already aBufferedWriter
, otherwise creates a BufferedWriter from the given Writer.- Parameters:
writer
- the Writer to wrap or return (not null)size
- the buffer size, if a new BufferedWriter is created.- Returns:
- the given Writer or a new
BufferedWriter
for the given Writer - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
-
byteArray
Returns a new byte array of sizeDEFAULT_BUFFER_SIZE
.- Returns:
- a new byte array of size
DEFAULT_BUFFER_SIZE
. - Since:
- 2.9.0
-
byteArray
Returns a new byte array of the given size. TODO Consider guarding or warning against large allocations...- Parameters:
size
- array size.- Returns:
- a new byte array of the given size.
- Throws:
NegativeArraySizeException
- if the size is negative.- Since:
- 2.9.0
-
close
Closes the givenCloseable
as a null-safe operation.- Parameters:
closeable
- The resource to close, may be null.- Throws:
IOException
- if an I/O error occurs.- Since:
- 2.7
-
close
Closes the givenCloseable
s as null-safe operations.- Parameters:
closeables
- The resource(s) to close, may be null.- Throws:
IOExceptionList
- if an I/O error occurs.- Since:
- 2.8.0
-
close
Closes the givenCloseable
as a null-safe operation.- Parameters:
closeable
- The resource to close, may be null.consumer
- Consume the IOException thrown byCloseable.close()
.- Throws:
IOException
- if an I/O error occurs.- Since:
- 2.7
-
close
Closes a URLConnection.- Parameters:
conn
- the connection to close.- Since:
- 2.4
-
closeQuietly
Closes aCloseable
unconditionally.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); }
Closing all streams:
try { return IOUtils.copy(inputStream, outputStream); } finally { IOUtils.closeQuietly(inputStream); IOUtils.closeQuietly(outputStream); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
closeable
- the objects to close, may be null or already closed- Since:
- 2.0
- See Also:
-
closeQuietly
Closes aCloseable
unconditionally.Equivalent to
Closeable.close()
, except any exceptions will be ignored.This is typically used in finally blocks to ensure that the closeable is closed even if an Exception was thrown before the normal close statement was reached.
It should not be used to replace the close statement(s) which should be present for the non-exceptional case.
It is only intended to simplify tidying up where normal processing has already failed and reporting close failure as well is not necessary or useful.Example code:
Closeable closeable = null; try { closeable = new FileReader("foo.txt"); // processing using the closeable; may throw an Exception closeable.close(); // Normal close - exceptions not ignored } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(closeable); // In case normal close was skipped due to Exception }
Closing all streams:
try { return IOUtils.copy(inputStream, outputStream); } finally { IOUtils.closeQuietly(inputStream, outputStream); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
closeables
- the objects to close, may be null or already closed- Since:
- 2.5
- See Also:
-
closeQuietly
Closes the givenCloseable
as a null-safe operation while consuming IOException by the givenconsumer
.- Parameters:
closeable
- The resource to close, may be null.consumer
- Consumes the IOException thrown byCloseable.close()
.- Since:
- 2.7
-
closeQuietly
Closes anInputStream
unconditionally.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); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
input
- the InputStream to close, may be null or already closed- See Also:
-
closeQuietly
Closes an iterable ofCloseable
unconditionally.Equivalent calling
Closeable.close()
on each element, except any exceptions will be ignored.- Parameters:
closeables
- the objects to close, may be null or already closed- Since:
- 2.12.0
- See Also:
-
closeQuietly
Closes anOutputStream
unconditionally.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); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
output
- the OutputStream to close, may be null or already closed- See Also:
-
closeQuietly
Closes anReader
unconditionally.Equivalent to
Reader.close()
, except any exceptions will be ignored. This is typically used in finally blocks.Example code:
char[] data = new char[1024]; Reader in = null; try { in = new FileReader("foo.txt"); in.read(data); in.close(); //close errors are handled } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(in); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
reader
- the Reader to close, may be null or already closed- See Also:
-
closeQuietly
Closes aSelector
unconditionally.Equivalent to
Selector.close()
, except any exceptions will be ignored. This is typically used in finally blocks.Example code:
Selector selector = null; try { selector = Selector.open(); // process socket } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(selector); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
selector
- the Selector to close, may be null or already closed- Since:
- 2.2
- See Also:
-
closeQuietly
Closes aServerSocket
unconditionally.Equivalent to
ServerSocket.close()
, except any exceptions will be ignored. This is typically used in finally blocks.Example code:
ServerSocket socket = null; try { socket = new ServerSocket(); // process socket socket.close(); } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(socket); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
serverSocket
- the ServerSocket to close, may be null or already closed- Since:
- 2.2
- See Also:
-
closeQuietly
Closes aSocket
unconditionally.Equivalent to
Socket.close()
, except any exceptions will be ignored. This is typically used in finally blocks.Example code:
Socket socket = null; try { socket = new Socket("http://www.foo.com/", 80); // process socket socket.close(); } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(socket); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
socket
- the Socket to close, may be null or already closed- Since:
- 2.0
- See Also:
-
closeQuietly
Closes a stream ofCloseable
unconditionally.Equivalent calling
Closeable.close()
on each element, except any exceptions will be ignored.- Parameters:
closeables
- the objects to close, may be null or already closed- Since:
- 2.12.0
- See Also:
-
closeQuietly
Closes anWriter
unconditionally.Equivalent to
Writer.close()
, except any exceptions will be ignored. This is typically used in finally blocks.Example code:
Writer out = null; try { out = new StringWriter(); out.write("Hello World"); out.close(); //close errors are handled } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(out); }
Also consider using a try-with-resources statement where appropriate.
- Parameters:
writer
- the Writer to close, may be null or already closed- See Also:
-
consume
Consumes bytes from aInputStream
and ignores them.The buffer size is given by
DEFAULT_BUFFER_SIZE
.- Parameters:
input
- theInputStream
to read.- Returns:
- the number of bytes copied. or
0
ifinput is null
. - Throws:
NullPointerException
- if the InputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 2.8.0
-
consume
Consumes characters from aReader
and ignores them.The buffer size is given by
DEFAULT_BUFFER_SIZE
.- Parameters:
input
- theReader
to read.- Returns:
- the number of bytes copied. or
0
ifinput is null
. - Throws:
NullPointerException
- if the Reader isnull
.IOException
- if an I/O error occurs.- Since:
- 2.12.0
-
contentEquals
Compares the contents of two Streams to determine if they are equal or not.This method buffers the input internally using
BufferedInputStream
if 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:
IOException
- if an I/O error occurs
-
contentEquals
Compares the contents of two Readers to determine if they are equal or not.This method buffers the input internally using
BufferedReader
if they are not already buffered.- Parameters:
input1
- the first readerinput2
- the second reader- Returns:
- true if the content of the readers are equal or they both don't exist, false otherwise
- Throws:
NullPointerException
- if either input is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
contentEqualsIgnoreEOL
public static boolean contentEqualsIgnoreEOL(Reader reader1, Reader reader2) throws UncheckedIOException Compares the contents of two Readers to determine if they are equal or not, ignoring EOL characters.This method buffers the input internally using
BufferedReader
if they are not already buffered.- Parameters:
reader1
- the first readerreader2
- the second reader- Returns:
- true if the content of the readers are equal (ignoring EOL differences), false otherwise
- Throws:
NullPointerException
- if either input is nullUncheckedIOException
- if an I/O error occurs- Since:
- 2.2
-
copy
Copies bytes from anInputStream
to 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
-1
after 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:
inputStream
- theInputStream
to read.outputStream
- theOutputStream
to write.- Returns:
- the number of bytes copied, or -1 if greater than
Integer.MAX_VALUE
. - Throws:
NullPointerException
- if the InputStream isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 1.1
-
copy
public static long copy(InputStream inputStream, OutputStream outputStream, int bufferSize) throws IOException Copies bytes from anInputStream
to anOutputStream
using an internal buffer of the given size.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
inputStream
- theInputStream
to read.outputStream
- theOutputStream
to write tobufferSize
- the bufferSize used to copy from the input to the output- Returns:
- the number of bytes copied.
- Throws:
NullPointerException
- if the InputStream isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 2.5
-
copy
Deprecated.Usecopy(InputStream, Writer, Charset)
insteadCopies bytes from anInputStream
to chars on aWriter
using 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
- theInputStream
to readwriter
- theWriter
to write to- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
copy
Copies bytes from anInputStream
to chars on aWriter
using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.This method uses
InputStreamReader
.- Parameters:
input
- theInputStream
to readwriter
- theWriter
to write toinputCharset
- the charset to use for the input stream, null means platform default- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
copy
public static void copy(InputStream input, Writer writer, String inputCharsetName) throws IOException Copies bytes from anInputStream
to chars on aWriter
using 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
- theInputStream
to readwriter
- theWriter
to write toinputCharsetName
- the name of the requested charset for the InputStream, null means platform default- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
copy
Copies bytes from aByteArrayOutputStream
to aQueueInputStream
.Unlike using JDK
PipedInputStream
andPipedOutputStream
for this, this solution works safely in a single thread environment.Example usage:
ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); outputStream.writeBytes("hello world".getBytes(StandardCharsets.UTF_8)); InputStream inputStream = IOUtils.copy(outputStream);
- Parameters:
outputStream
- theByteArrayOutputStream
to read.- Returns:
- the
QueueInputStream
filled with the content of the outputStream. - Throws:
NullPointerException
- if theByteArrayOutputStream
isnull
.IOException
- if an I/O error occurs.- Since:
- 2.12
-
copy
Copies chars from aReader
to aAppendable
.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
-1
after 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:
reader
- theReader
to readoutput
- theAppendable
to 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:
- 2.7
-
copy
Copies chars from aReader
to anAppendable
.This method uses the provided buffer, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to readoutput
- theAppendable
to 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.7
-
copy
Deprecated.Usecopy(Reader, OutputStream, Charset)
insteadCopies chars from aReader
to bytes on anOutputStream
using the default character encoding of the platform, and calling flush.This method buffers the input internally, so there is no need to use a
BufferedReader
.Due to the implementation of OutputStreamWriter, this method performs a flush.
This method uses
OutputStreamWriter
.- Parameters:
reader
- theReader
to readoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
copy
public static void copy(Reader reader, OutputStream output, Charset outputCharset) throws IOException Copies chars from aReader
to bytes on anOutputStream
using the specified character encoding, and calling flush.This method buffers the input internally, so there is no need to use a
BufferedReader
.Due to the implementation of OutputStreamWriter, this method performs a flush.
This method uses
OutputStreamWriter
.- Parameters:
reader
- theReader
to readoutput
- theOutputStream
to write tooutputCharset
- the charset to use for the OutputStream, null means platform default- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
copy
public static void copy(Reader reader, OutputStream output, String outputCharsetName) throws IOException Copies chars from aReader
to bytes on anOutputStream
using the specified character encoding, and calling flush.This method buffers the input internally, so there is no need to use a
BufferedReader
.Character encoding names can be found at IANA.
Due to the implementation of OutputStreamWriter, this method performs a flush.
This method uses
OutputStreamWriter
.- Parameters:
reader
- theReader
to readoutput
- theOutputStream
to write tooutputCharsetName
- the name of the requested charset for the OutputStream, null means platform default- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
copy
Copies chars from aReader
to 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
-1
after 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:
reader
- theReader
to read.writer
- theWriter
to write.- 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
-
copy
Copies bytes from aURL
to 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:
url
- theURL
to read.file
- theOutputStream
to write.- Returns:
- the number of bytes copied.
- Throws:
NullPointerException
- if the URL isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 2.9.0
-
copy
Copies bytes from aURL
to 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:
url
- theURL
to read.outputStream
- theOutputStream
to write.- Returns:
- the number of bytes copied.
- Throws:
NullPointerException
- if the URL isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 2.9.0
-
copyLarge
Copies bytes from a large (over 2GB)InputStream
to 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:
inputStream
- theInputStream
to read.outputStream
- theOutputStream
to write.- Returns:
- the number of bytes copied.
- Throws:
NullPointerException
- if the InputStream isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 1.3
-
copyLarge
public static long copyLarge(InputStream inputStream, OutputStream outputStream, byte[] buffer) throws IOException Copies bytes from a large (over 2GB)InputStream
to anOutputStream
.This method uses the provided buffer, so there is no need to use a
BufferedInputStream
.- Parameters:
inputStream
- theInputStream
to read.outputStream
- theOutputStream
to write.buffer
- the buffer to use for the copy- Returns:
- the number of bytes copied.
- Throws:
NullPointerException
- if the InputStream isnull
.NullPointerException
- if the OutputStream isnull
.IOException
- if an I/O error occurs.- Since:
- 2.2
-
copyLarge
public static long copyLarge(InputStream input, OutputStream output, long inputOffset, long length) throws IOException Copies some or all bytes from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input bytes.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.Note that the implementation uses
The buffer size is given byskip(InputStream, long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.DEFAULT_BUFFER_SIZE
.- Parameters:
input
- theInputStream
to readoutput
- theOutputStream
to write toinputOffset
- : number of bytes to skip from input before copying -ve values are ignoredlength
- number of bytes to copy. -ve means all- Returns:
- the number of bytes copied
- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 2.2
-
copyLarge
public static long copyLarge(InputStream input, OutputStream output, long inputOffset, long length, byte[] buffer) throws IOException Copies some or all bytes from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input bytes.This method uses the provided buffer, so there is no need to use a
BufferedInputStream
.Note that the implementation uses
skip(InputStream, long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.- Parameters:
input
- theInputStream
to readoutput
- theOutputStream
to write toinputOffset
- number of bytes to skip from input before copying -ve values are ignoredlength
- number of bytes to copy. -ve means allbuffer
- 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
-
copyLarge
Copies chars from a large (over 2GB)Reader
to 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:
reader
- theReader
to source.writer
- theWriter
to target.- 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
Copies chars from a large (over 2GB)Reader
to aWriter
.This method uses the provided buffer, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to source.writer
- theWriter
to target.buffer
- 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
-
copyLarge
public static long copyLarge(Reader reader, Writer writer, long inputOffset, long length) throws IOException Copies some or all chars from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input chars.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:
reader
- theReader
to readwriter
- theWriter
to write toinputOffset
- number of chars to skip from input before copying -ve values are ignoredlength
- number of chars to copy. -ve means all- Returns:
- the number of chars copied
- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 2.2
-
copyLarge
public static long copyLarge(Reader reader, Writer writer, long inputOffset, long length, char[] buffer) throws IOException Copies some or all chars from a large (over 2GB)InputStream
to anOutputStream
, optionally skipping input chars.This method uses the provided buffer, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to readwriter
- theWriter
to write toinputOffset
- number of chars to skip from input before copying -ve values are ignoredlength
- number of chars to copy. -ve means allbuffer
- the buffer to be used for the copy- Returns:
- the number of chars copied
- Throws:
NullPointerException
- if the input or output is nullIOException
- if an I/O error occurs- Since:
- 2.2
-
length
Returns the length of the given array in a null-safe manner.- Parameters:
array
- an array or null- Returns:
- the array length, or 0 if the given array is null.
- Since:
- 2.7
-
length
Returns the length of the given array in a null-safe manner.- Parameters:
array
- an array or null- Returns:
- the array length, or 0 if the given array is null.
- Since:
- 2.7
-
length
Returns the length of the given CharSequence in a null-safe manner.- Parameters:
csq
- a CharSequence or null- Returns:
- the CharSequence length, or 0 if the given CharSequence is null.
- Since:
- 2.7
-
length
Returns the length of the given array in a null-safe manner.- Parameters:
array
- an array or null- Returns:
- the array length, or 0 if the given array is null.
- Since:
- 2.7
-
lineIterator
Returns an Iterator for the lines in anInputStream
, using the character encoding specified (or default encoding if null).LineIterator
holds a reference to the openInputStream
specified here. When you have finished with the iterator you should close the stream to free internal resources. This can be done by using a try-with-resources block, closing the stream directly, or by callingLineIterator.close()
.The recommended usage pattern is:
try { LineIterator it = IOUtils.lineIterator(stream, charset); while (it.hasNext()) { String line = it.nextLine(); /// do something with line } } finally { IOUtils.closeQuietly(stream); }
- Parameters:
input
- theInputStream
to read, not nullcharset
- the charset to use, null means platform default- Returns:
- an Iterator of the lines in the reader, never null
- Throws:
IllegalArgumentException
- if the input is null- Since:
- 2.3
-
lineIterator
Returns an Iterator for the lines in anInputStream
, using the character encoding specified (or default encoding if null).LineIterator
holds a reference to the openInputStream
specified here. When you have finished with the iterator you should close the stream to free internal resources. This can be done by using a try-with-resources block, closing the stream directly, or by callingLineIterator.close()
.The recommended usage pattern is:
try { LineIterator it = IOUtils.lineIterator(stream, StandardCharsets.UTF_8.name()); while (it.hasNext()) { String line = it.nextLine(); /// do something with line } } finally { IOUtils.closeQuietly(stream); }
- Parameters:
input
- theInputStream
to read, not nullcharsetName
- the encoding to use, null means platform default- Returns:
- an Iterator of the lines in the reader, never null
- Throws:
IllegalArgumentException
- if the input is nullUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.2
-
lineIterator
Returns an Iterator for the lines in aReader
.LineIterator
holds a reference to the openReader
specified here. When you have finished with the iterator you should close the reader to free internal resources. This can be done by using a try-with-resources block, closing the reader directly, or by callingLineIterator.close()
.The recommended usage pattern is:
try { LineIterator it = IOUtils.lineIterator(reader); while (it.hasNext()) { String line = it.nextLine(); /// do something with line } } finally { IOUtils.closeQuietly(reader); }
- Parameters:
reader
- theReader
to read, not null- Returns:
- an Iterator of the lines in the reader, never null
- Throws:
NullPointerException
- if the reader is null- Since:
- 1.2
-
read
Reads bytes from an input stream. This implementation guarantees that it will read as many bytes as possible before giving up; this may not always be the case for subclasses ofInputStream
.- Parameters:
input
- where to read input frombuffer
- destination- Returns:
- actual length read; may be less than requested if EOF was reached
- Throws:
IOException
- if a read error occurs- Since:
- 2.2
-
read
Reads bytes from an input stream. This implementation guarantees that it will read as many bytes as possible before giving up; this may not always be the case for subclasses ofInputStream
.- Parameters:
input
- where to read inputbuffer
- destinationoffset
- initial offset into bufferlength
- length to read, must be >= 0- Returns:
- actual length read; may be less than requested if EOF was reached
- Throws:
IllegalArgumentException
- if length is negativeIOException
- if a read error occurs- Since:
- 2.2
-
read
Reads bytes from a ReadableByteChannel.This implementation guarantees that it will read as many bytes as possible before giving up; this may not always be the case for subclasses of
ReadableByteChannel
.- Parameters:
input
- the byte channel to readbuffer
- byte buffer destination- Returns:
- the actual length read; may be less than requested if EOF was reached
- Throws:
IOException
- if a read error occurs- Since:
- 2.5
-
read
Reads characters from an input character stream. This implementation guarantees that it will read as many characters as possible before giving up; this may not always be the case for subclasses ofReader
.- Parameters:
reader
- where to read input frombuffer
- destination- Returns:
- actual length read; may be less than requested if EOF was reached
- Throws:
IOException
- if a read error occurs- Since:
- 2.2
-
read
Reads characters from an input character stream. This implementation guarantees that it will read as many characters as possible before giving up; this may not always be the case for subclasses ofReader
.- Parameters:
reader
- where to read input frombuffer
- destinationoffset
- initial offset into bufferlength
- length to read, must be >= 0- Returns:
- actual length read; may be less than requested if EOF was reached
- Throws:
IllegalArgumentException
- if length is negativeIOException
- if a read error occurs- Since:
- 2.2
-
readFully
Reads the requested number of bytes or fail if there are not enough left.This allows for the possibility that
InputStream.read(byte[], int, int)
may not read as many bytes as requested (most likely because of reaching EOF).- Parameters:
input
- where to read input frombuffer
- destination- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if length is negativeEOFException
- if the number of bytes read was incorrect- Since:
- 2.2
-
readFully
public static void readFully(InputStream input, byte[] buffer, int offset, int length) throws IOException Reads the requested number of bytes or fail if there are not enough left.This allows for the possibility that
InputStream.read(byte[], int, int)
may not read as many bytes as requested (most likely because of reaching EOF).- Parameters:
input
- where to read input frombuffer
- destinationoffset
- initial offset into bufferlength
- length to read, must be >= 0- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if length is negativeEOFException
- if the number of bytes read was incorrect- Since:
- 2.2
-
readFully
Reads the requested number of bytes or fail if there are not enough left.This allows for the possibility that
InputStream.read(byte[], int, int)
may not read as many bytes as requested (most likely because of reaching EOF).- Parameters:
input
- where to read input fromlength
- length to read, must be >= 0- Returns:
- the bytes read from input
- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if length is negativeEOFException
- if the number of bytes read was incorrect- Since:
- 2.5
-
readFully
Reads the requested number of bytes or fail if there are not enough left.This allows for the possibility that
ReadableByteChannel.read(ByteBuffer)
may not read as many bytes as requested (most likely because of reaching EOF).- Parameters:
input
- the byte channel to readbuffer
- byte buffer destination- Throws:
IOException
- if there is a problem reading the fileEOFException
- if the number of bytes read was incorrect- Since:
- 2.5
-
readFully
Reads the requested number of characters or fail if there are not enough left.This allows for the possibility that
Reader.read(char[], int, int)
may not read as many characters as requested (most likely because of reaching EOF).- Parameters:
reader
- where to read input frombuffer
- destination- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if length is negativeEOFException
- if the number of characters read was incorrect- Since:
- 2.2
-
readFully
public static void readFully(Reader reader, char[] buffer, int offset, int length) throws IOException Reads the requested number of characters or fail if there are not enough left.This allows for the possibility that
Reader.read(char[], int, int)
may not read as many characters as requested (most likely because of reaching EOF).- Parameters:
reader
- where to read input frombuffer
- destinationoffset
- initial offset into bufferlength
- length to read, must be >= 0- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if length is negativeEOFException
- if the number of characters read was incorrect- Since:
- 2.2
-
readLines
Gets the contents of aCharSequence
as a list of Strings, one entry per line.- Parameters:
csq
- theCharSequence
to read, not null- Returns:
- the list of Strings, never null
- Throws:
UncheckedIOException
- if an I/O error occurs- Since:
- 2.18.0
-
readLines
Deprecated.UsereadLines(InputStream, Charset)
insteadGets the contents of anInputStream
as a list of Strings, one entry per line, using the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- theInputStream
to read, not null- Returns:
- the list of Strings, never null
- Throws:
NullPointerException
- if the input is nullUncheckedIOException
- if an I/O error occurs- Since:
- 1.1
-
readLines
public static List<String> readLines(InputStream input, Charset charset) throws UncheckedIOException Gets the contents of anInputStream
as a list of Strings, one entry per line, using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- theInputStream
to read, not nullcharset
- the charset to use, null means platform default- Returns:
- the list of Strings, never null
- Throws:
NullPointerException
- if the input is nullUncheckedIOException
- if an I/O error occurs- Since:
- 2.3
-
readLines
public static List<String> readLines(InputStream input, String charsetName) throws UncheckedIOException Gets the contents of anInputStream
as a list of Strings, one entry per line, 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
- theInputStream
to read, not nullcharsetName
- the name of the requested charset, null means platform default- Returns:
- the list of Strings, never null
- Throws:
NullPointerException
- if the input is nullUncheckedIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
readLines
Gets the contents of aReader
as a list of Strings, one entry per line.This method buffers the input internally, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to read, not null- Returns:
- the list of Strings, never null
- Throws:
NullPointerException
- if the input is nullUncheckedIOException
- if an I/O error occurs- Since:
- 1.1
-
resourceToByteArray
Gets the contents of a resource as a byte array.Delegates to
resourceToByteArray(String, null)
.- Parameters:
name
- The resource name.- Returns:
- the requested byte array
- Throws:
IOException
- if an I/O error occurs or the resource is not found.- Since:
- 2.6
- See Also:
-
resourceToByteArray
Gets the contents of a resource as a byte array.Delegates to
resourceToURL(String, ClassLoader)
.- Parameters:
name
- The resource name.classLoader
- the class loader that the resolution of the resource is delegated to- Returns:
- the requested byte array
- Throws:
IOException
- if an I/O error occurs or the resource is not found.- Since:
- 2.6
- See Also:
-
resourceToString
Gets the contents of a resource as a String using the specified character encoding.Delegates to
resourceToString(String, Charset, null)
.- Parameters:
name
- The resource name.charset
- the charset to use, null means platform default- Returns:
- the requested String
- Throws:
IOException
- if an I/O error occurs or the resource is not found.- Since:
- 2.6
- See Also:
-
resourceToString
public static String resourceToString(String name, Charset charset, ClassLoader classLoader) throws IOException Gets the contents of a resource as a String using the specified character encoding.Delegates to
resourceToURL(String, ClassLoader)
.- Parameters:
name
- The resource name.charset
- the Charset to use, null means platform defaultclassLoader
- the class loader that the resolution of the resource is delegated to- Returns:
- the requested String
- Throws:
IOException
- if an I/O error occurs.- Since:
- 2.6
- See Also:
-
resourceToURL
Gets a URL pointing to the given resource.Delegates to
resourceToURL(String, null)
.- Parameters:
name
- The resource name.- Returns:
- A URL object for reading the resource.
- Throws:
IOException
- if the resource is not found.- Since:
- 2.6
-
resourceToURL
Gets a URL pointing to the given resource.If the
classLoader
is not null, callClassLoader.getResource(String)
, otherwise callIOUtils.class.getResource(name)
.- Parameters:
name
- The resource name.classLoader
- Delegate to this class loader if not null- Returns:
- A URL object for reading the resource.
- Throws:
IOException
- if the resource is not found.- Since:
- 2.6
-
skip
Skips bytes from an input byte stream. This implementation guarantees that it will read as many bytes as possible before giving up; this may not always be the case for skip() implementations in subclasses ofInputStream
.Note that the implementation uses
InputStream.read(byte[], int, int)
rather than delegating toInputStream.skip(long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of bytes are skipped.- Parameters:
input
- byte stream to skipskip
- number of bytes to skip.- Returns:
- number of bytes actually skipped.
- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negative- Since:
- 2.0
- See Also:
-
skip
public static long skip(InputStream input, long skip, Supplier<byte[]> skipBufferSupplier) throws IOException Skips bytes from an input byte stream.Intended for special cases when customization of the temporary buffer is needed because, for example, a nested input stream has requirements for the bytes read. For example, when using
InflaterInputStream
s from multiple threads.This implementation guarantees that it will read as many bytes as possible before giving up; this may not always be the case for skip() implementations in subclasses of
InputStream
.Note that the implementation uses
InputStream.read(byte[], int, int)
rather than delegating toInputStream.skip(long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of bytes are skipped.- Parameters:
input
- byte stream to skipskip
- number of bytes to skip.skipBufferSupplier
- Supplies the buffer to use for reading.- Returns:
- number of bytes actually skipped.
- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negative- Since:
- 2.14.0
- See Also:
-
skip
Skips bytes from a ReadableByteChannel. This implementation guarantees that it will read as many bytes as possible before giving up.- Parameters:
input
- ReadableByteChannel to skiptoSkip
- number of bytes to skip.- Returns:
- number of bytes actually skipped.
- Throws:
IOException
- if there is a problem reading the ReadableByteChannelIllegalArgumentException
- if toSkip is negative- Since:
- 2.5
-
skip
Skips characters from an input character stream. This implementation guarantees that it will read as many characters as possible before giving up; this may not always be the case for skip() implementations in subclasses ofReader
.Note that the implementation uses
Reader.read(char[], int, int)
rather than delegating toReader.skip(long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.- Parameters:
reader
- character stream to skiptoSkip
- number of characters to skip.- Returns:
- number of characters actually skipped.
- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negative- Since:
- 2.0
- See Also:
-
skipFully
Skips the requested number of bytes or fail if there are not enough left.This allows for the possibility that
InputStream.skip(long)
may not skip as many bytes as requested (most likely because of reaching EOF).Note that the implementation uses
skip(InputStream, long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.- Parameters:
input
- stream to skiptoSkip
- the number of bytes to skip- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negativeEOFException
- if the number of bytes skipped was incorrect- Since:
- 2.0
- See Also:
-
skipFully
public static void skipFully(InputStream input, long toSkip, Supplier<byte[]> skipBufferSupplier) throws IOException Skips the requested number of bytes or fail if there are not enough left.Intended for special cases when customization of the temporary buffer is needed because, for example, a nested input stream has requirements for the bytes read. For example, when using
InflaterInputStream
s from multiple threads.This allows for the possibility that
InputStream.skip(long)
may not skip as many bytes as requested (most likely because of reaching EOF).Note that the implementation uses
skip(InputStream, long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.- Parameters:
input
- stream to skiptoSkip
- the number of bytes to skipskipBufferSupplier
- Supplies the buffer to use for reading.- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negativeEOFException
- if the number of bytes skipped was incorrect- Since:
- 2.14.0
- See Also:
-
skipFully
Skips the requested number of bytes or fail if there are not enough left.- Parameters:
input
- ReadableByteChannel to skiptoSkip
- the number of bytes to skip- Throws:
IOException
- if there is a problem reading the ReadableByteChannelIllegalArgumentException
- if toSkip is negativeEOFException
- if the number of bytes skipped was incorrect- Since:
- 2.5
-
skipFully
Skips the requested number of characters or fail if there are not enough left.This allows for the possibility that
Reader.skip(long)
may not skip as many characters as requested (most likely because of reaching EOF).Note that the implementation uses
skip(Reader, long)
. This means that the method may be considerably less efficient than using the actual skip implementation, this is done to guarantee that the correct number of characters are skipped.- Parameters:
reader
- stream to skiptoSkip
- the number of characters to skip- Throws:
IOException
- if there is a problem reading the fileIllegalArgumentException
- if toSkip is negativeEOFException
- if the number of characters skipped was incorrect- Since:
- 2.0
- See Also:
-
toBufferedInputStream
Fetches entire contents of anInputStream
and represent same data as result InputStream.This method is useful where,
- Source InputStream is slow.
- It has network resources associated, so we cannot keep it open for long time.
- It has network timeout associated.
It can be used in favor of
toByteArray(InputStream)
, since it avoids unnecessary allocation and copy of byte[].
This method buffers the input internally, so there is no need to use aBufferedInputStream
.- Parameters:
input
- Stream to be fully buffered.- Returns:
- A fully buffered stream.
- Throws:
IOException
- if an I/O error occurs.- Since:
- 2.0
-
toBufferedInputStream
Fetches entire contents of anInputStream
and represent same data as result InputStream.This method is useful where,
- Source InputStream is slow.
- It has network resources associated, so we cannot keep it open for long time.
- It has network timeout associated.
It can be used in favor of
toByteArray(InputStream)
, since it avoids unnecessary allocation and copy of byte[].
This method buffers the input internally, so there is no need to use aBufferedInputStream
.- Parameters:
input
- Stream to be fully buffered.size
- the initial buffer size- Returns:
- A fully buffered stream.
- Throws:
IOException
- if an I/O error occurs.- Since:
- 2.5
-
toBufferedReader
Returns the given reader if it is aBufferedReader
, otherwise creates a BufferedReader from the given reader.- Parameters:
reader
- the reader to wrap or return (not null)- Returns:
- the given reader or a new
BufferedReader
for the given reader - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.2
- See Also:
-
toBufferedReader
Returns the given reader if it is aBufferedReader
, otherwise creates a BufferedReader from the given reader.- Parameters:
reader
- the reader to wrap or return (not null)size
- the buffer size, if a new BufferedReader is created.- Returns:
- the given reader or a new
BufferedReader
for the given reader - Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.5
- See Also:
-
toByteArray
Gets the contents of anInputStream
as abyte[]
.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
inputStream
- theInputStream
to read.- Returns:
- the requested byte array.
- Throws:
NullPointerException
- if the InputStream isnull
.IOException
- if an I/O error occurs or reading more thanInteger.MAX_VALUE
occurs.
-
toByteArray
Gets the contents of anInputStream
as abyte[]
. Use this method instead oftoByteArray(InputStream)
whenInputStream
size is known.- Parameters:
input
- theInputStream
to read.size
- the size ofInputStream
to read, where 0 <size
<= length of input stream.- Returns:
- byte [] of length
size
. - Throws:
IOException
- if an I/O error occurs orInputStream
length is smaller than parametersize
.IllegalArgumentException
- ifsize
is less than zero.- Since:
- 2.1
-
toByteArray
Gets contents of anInputStream
as abyte[]
. Use this method instead oftoByteArray(InputStream)
whenInputStream
size is known. NOTE: the method checks that the length can safely be cast to an int without truncation before usingtoByteArray(InputStream, int)
to read into the byte array. (Arrays can have no more than Integer.MAX_VALUE entries anyway)- Parameters:
input
- theInputStream
to readsize
- the size ofInputStream
to read, where 0 <size
<= min(Integer.MAX_VALUE, length of input stream).- Returns:
- byte [] the requested byte array, of length
size
- Throws:
IOException
- if an I/O error occurs orInputStream
length is less thansize
IllegalArgumentException
- if size is less than zero or size is greater than Integer.MAX_VALUE- Since:
- 2.1
- See Also:
-
toByteArray
Deprecated.UsetoByteArray(Reader, Charset)
insteadGets the contents of aReader
as abyte[]
using the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to read- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs
-
toByteArray
Gets the contents of aReader
as abyte[]
using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to readcharset
- the charset to use, null means platform default- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
toByteArray
Gets the contents of aReader
as abyte[]
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
BufferedReader
.- Parameters:
reader
- theReader
to readcharsetName
- the name of the requested charset, null means platform default- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
toByteArray
Deprecated.UseString.getBytes()
insteadGets the contents of aString
as abyte[]
using the default character encoding of the platform.This is the same as
String.getBytes()
.- Parameters:
input
- theString
to convert- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the input is null
-
toByteArray
Gets the contents of aURI
as abyte[]
.- Parameters:
uri
- theURI
to read- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the uri is nullIOException
- if an I/O exception occurs- Since:
- 2.4
-
toByteArray
Gets the contents of aURL
as abyte[]
.- Parameters:
url
- theURL
to read- Returns:
- the requested byte array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O exception occurs- Since:
- 2.4
-
toByteArray
Gets the contents of aURLConnection
as abyte[]
.- Parameters:
urlConnection
- theURLConnection
to read.- Returns:
- the requested byte array.
- Throws:
NullPointerException
- if the urlConn is null.IOException
- if an I/O exception occurs.- Since:
- 2.4
-
toCharArray
Deprecated.UsetoCharArray(InputStream, Charset)
insteadGets the contents of anInputStream
as a character array using the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
inputStream
- theInputStream
to read- Returns:
- the requested character array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
toCharArray
Gets the contents of anInputStream
as a character array using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
inputStream
- theInputStream
to readcharset
- the charset to use, null means platform default- Returns:
- the requested character array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
toCharArray
Gets the contents of anInputStream
as a character array 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:
inputStream
- theInputStream
to readcharsetName
- the name of the requested charset, null means platform default- Returns:
- the requested character array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
toCharArray
Gets the contents of aReader
as a character array.This method buffers the input internally, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to read- Returns:
- the requested character array
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
toInputStream
Deprecated.UsetoInputStream(CharSequence, Charset)
insteadConverts the specified CharSequence to an input stream, encoded as bytes using the default character encoding of the platform.- Parameters:
input
- the CharSequence to convert- Returns:
- an input stream
- Since:
- 2.0
-
toInputStream
Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.- Parameters:
input
- the CharSequence to convertcharset
- the charset to use, null means platform default- Returns:
- an input stream
- Since:
- 2.3
-
toInputStream
Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.Character encoding names can be found at IANA.
- Parameters:
input
- the CharSequence to convertcharsetName
- the name of the requested charset, null means platform default- Returns:
- an input stream
- Throws:
UnsupportedCharsetException
- if the encoding is not supported- Since:
- 2.0
-
toInputStream
Deprecated.UsetoInputStream(String, Charset)
insteadConverts the specified string to an input stream, encoded as bytes using the default character encoding of the platform.- Parameters:
input
- the string to convert- Returns:
- an input stream
- Since:
- 1.1
-
toInputStream
Converts the specified string to an input stream, encoded as bytes using the specified character encoding.- Parameters:
input
- the string to convertcharset
- the charset to use, null means platform default- Returns:
- an input stream
- Since:
- 2.3
-
toInputStream
Converts the specified string to an input stream, encoded as bytes using the specified character encoding.Character encoding names can be found at IANA.
- Parameters:
input
- the string to convertcharsetName
- the name of the requested charset, null means platform default- Returns:
- an input stream
- Throws:
UnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
toString
Deprecated.UseString(byte[])
insteadGets the contents of abyte[]
as a String using the default character encoding of the platform.- Parameters:
input
- the byte array to read- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is null
-
toString
Gets the contents of abyte[]
as a String using the specified character encoding.Character encoding names can be found at IANA.
- Parameters:
input
- the byte array to readcharsetName
- the name of the requested charset, null means platform default- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is null
-
toString
Deprecated.UsetoString(InputStream, Charset)
insteadGets the contents of anInputStream
as a String using the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- theInputStream
to read- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs
-
toString
Gets the contents of anInputStream
as a String using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- theInputStream
to readcharset
- the charset to use, null means platform default- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
toString
Gets the contents of anInputStream
as 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
- theInputStream
to readcharsetName
- the name of the requested charset, null means platform default- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported
-
toString
Gets the contents of anInputStream
from a supplier as a String using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- supplies theInputStream
to readcharset
- the charset to use, null means platform default- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 2.12.0
-
toString
public static String toString(IOSupplier<InputStream> input, Charset charset, IOSupplier<String> defaultString) throws IOException Gets the contents of anInputStream
from a supplier as a String using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream
.- Parameters:
input
- supplies theInputStream
to readcharset
- the charset to use, null means platform defaultdefaultString
- the default return value if the supplier or its value is null.- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 2.12.0
-
toString
Gets the contents of aReader
as a String.This method buffers the input internally, so there is no need to use a
BufferedReader
.- Parameters:
reader
- theReader
to read- Returns:
- the requested String
- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs
-
toString
Deprecated.UsetoString(URI, Charset)
insteadGets the contents at the given URI.- Parameters:
uri
- The URI source.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.- Since:
- 2.1
-
toString
Gets the contents at the given URI.- Parameters:
uri
- The URI source.encoding
- The encoding name for the URL contents.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.- Since:
- 2.3.
-
toString
Gets the contents at the given URI.- Parameters:
uri
- The URI source.charsetName
- The encoding name for the URL contents.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.UnsupportedCharsetException
- if the encoding is not supported- Since:
- 2.1
-
toString
Deprecated.UsetoString(URL, Charset)
insteadGets the contents at the given URL.- Parameters:
url
- The URL source.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.- Since:
- 2.1
-
toString
Gets the contents at the given URL.- Parameters:
url
- The URL source.encoding
- The encoding name for the URL contents.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.- Since:
- 2.3
-
toString
Gets the contents at the given URL.- Parameters:
url
- The URL source.charsetName
- The encoding name for the URL contents.- Returns:
- The contents of the URL as a String.
- Throws:
IOException
- if an I/O exception occurs.UnsupportedCharsetException
- if the encoding is not supported- Since:
- 2.1
-
write
Writes bytes from abyte[]
to anOutputStream
.- Parameters:
data
- the byte array to write, do not modify during output, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.Usewrite(byte[], Writer, Charset)
insteadWrites bytes from abyte[]
to chars on aWriter
using the default character encoding of the platform.This method uses
String(byte[])
.- Parameters:
data
- the byte array to write, do not modify during output, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Writes bytes from abyte[]
to chars on aWriter
using the specified character encoding.This method uses
String(byte[], String)
.- Parameters:
data
- the byte array to write, do not modify during output, null ignoredwriter
- theWriter
to write tocharset
- the charset to use, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
write
Writes bytes from abyte[]
to chars on aWriter
using the specified character encoding.Character encoding names can be found at IANA.
This method uses
String(byte[], String)
.- Parameters:
data
- the byte array to write, do not modify during output, null ignoredwriter
- theWriter
to write tocharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
write
Deprecated.Usewrite(char[], OutputStream, Charset)
insteadWrites chars from achar[]
to bytes on anOutputStream
.This method uses
String(char[])
andString.getBytes()
.- Parameters:
data
- the char array to write, do not modify during output, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Writes chars from achar[]
to bytes on anOutputStream
using the specified character encoding.This method uses
String(char[])
andString.getBytes(String)
.- Parameters:
data
- the char array to write, do not modify during output, null ignoredoutput
- theOutputStream
to write tocharset
- the charset to use, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
write
Writes chars from achar[]
to bytes on anOutputStream
using the specified character encoding.Character encoding names can be found at IANA.
This method uses
String(char[])
andString.getBytes(String)
.- Parameters:
data
- the char array to write, do not modify during output, null ignoredoutput
- theOutputStream
to write tocharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
write
Writes chars from achar[]
to aWriter
- Parameters:
data
- the char array to write, do not modify during output, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.Usewrite(CharSequence, OutputStream, Charset)
insteadWrites chars from aCharSequence
to bytes on anOutputStream
using the default character encoding of the platform.This method uses
String.getBytes()
.- Parameters:
data
- theCharSequence
to write, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.0
-
write
public static void write(CharSequence data, OutputStream output, Charset charset) throws IOException Writes chars from aCharSequence
to bytes on anOutputStream
using the specified character encoding.This method uses
String.getBytes(String)
.- Parameters:
data
- theCharSequence
to write, null ignoredoutput
- theOutputStream
to write tocharset
- the charset to use, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
write
public static void write(CharSequence data, OutputStream output, String charsetName) throws IOException Writes chars from aCharSequence
to bytes on anOutputStream
using the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String)
.- Parameters:
data
- theCharSequence
to write, null ignoredoutput
- theOutputStream
to write tocharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 2.0
-
write
Writes chars from aCharSequence
to aWriter
.- Parameters:
data
- theCharSequence
to write, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.0
-
write
Deprecated.Usewrite(String, OutputStream, Charset)
insteadWrites chars from aString
to bytes on anOutputStream
using the default character encoding of the platform.This method uses
String.getBytes()
.- Parameters:
data
- theString
to write, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Writes chars from aString
to bytes on anOutputStream
using the specified character encoding.This method uses
String.getBytes(String)
.- Parameters:
data
- theString
to write, null ignoredoutput
- theOutputStream
to write tocharset
- the charset to use, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
write
Writes chars from aString
to bytes on anOutputStream
using the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String)
.- Parameters:
data
- theString
to write, null ignoredoutput
- theOutputStream
to write tocharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
write
- Parameters:
data
- theString
to write, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.Writes chars from aStringBuffer
to bytes on anOutputStream
using the default character encoding of the platform.This method uses
String.getBytes()
.- Parameters:
data
- theStringBuffer
to write, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
write
@Deprecated public static void write(StringBuffer data, OutputStream output, String charsetName) throws IOException Deprecated.Writes chars from aStringBuffer
to bytes on anOutputStream
using the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String)
.- Parameters:
data
- theStringBuffer
to write, null ignoredoutput
- theOutputStream
to write tocharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
write
Deprecated.Writes chars from aStringBuffer
to aWriter
.- Parameters:
data
- theStringBuffer
to write, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
writeChunked
Writes bytes from abyte[]
to anOutputStream
using chunked writes. This is intended for writing very large byte arrays which might otherwise cause excessive memory usage if the native code has to allocate a copy.- Parameters:
data
- the byte array to write, do not modify during output, null ignoredoutput
- theOutputStream
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.5
-
writeChunked
Writes chars from achar[]
to aWriter
using chunked writes. This is intended for writing very large byte arrays which might otherwise cause excessive memory usage if the native code has to allocate a copy.- Parameters:
data
- the char array to write, do not modify during output, null ignoredwriter
- theWriter
to write to- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.5
-
writeLines
@Deprecated public static void writeLines(Collection<?> lines, String lineEnding, OutputStream output) throws IOException Deprecated.Writes theObject.toString()
value of each item in a collection to anOutputStream
line by line, using the default character encoding of the platform and the specified line ending.- Parameters:
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultoutput
- theOutputStream
to write to, not null, not closed- Throws:
NullPointerException
- if the output is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
writeLines
public static void writeLines(Collection<?> lines, String lineEnding, OutputStream output, Charset charset) throws IOException Writes theObject.toString()
value of each item in a collection to anOutputStream
line by line, using the specified character encoding and the specified line ending.UTF-16 is written big-endian with no byte order mark. For little-endian, use UTF-16LE. For a BOM, write it to the stream before calling this method.
- Parameters:
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultoutput
- theOutputStream
to write to, not null, not closedcharset
- the charset to use, null means platform default- Throws:
NullPointerException
- if output is nullIOException
- if an I/O error occurs- Since:
- 2.3
-
writeLines
public static void writeLines(Collection<?> lines, String lineEnding, OutputStream output, String charsetName) throws IOException Writes theObject.toString()
value of each item in a collection to anOutputStream
line by line, using the specified character encoding and the specified line ending.Character encoding names can be found at IANA.
- Parameters:
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultoutput
- theOutputStream
to write to, not null, not closedcharsetName
- the name of the requested charset, null means platform default- Throws:
NullPointerException
- if the output is nullIOException
- if an I/O error occursUnsupportedCharsetException
- if the encoding is not supported- Since:
- 1.1
-
writeLines
public static void writeLines(Collection<?> lines, String lineEnding, Writer writer) throws IOException Writes theObject.toString()
value of each item in a collection to aWriter
line by line, using the specified line ending.- Parameters:
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultwriter
- theWriter
to write to, not null, not closed- Throws:
NullPointerException
- if the input is nullIOException
- if an I/O error occurs- Since:
- 1.1
-
writer
Returns the given Appendable if it is already aWriter
, otherwise creates a Writer wrapper around the given Appendable.- Parameters:
appendable
- the Appendable to wrap or return (not null)- Returns:
- the given Appendable or a Writer wrapper around the given Appendable
- Throws:
NullPointerException
- if the input parameter is null- Since:
- 2.7
-
System.lineSeparator()
.