Class IOUtils
This class provides static utility methods for input/output operations.
- [Deprecated] 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.
Origin of code: Excalibur.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe default buffer size (8192) to use in copy methods.static final charThe system directory separator character.static final charThe Unix directory separator character.static final charThe Windows directory separator character.private static final byte[]static final intRepresents the end-of-file (or stream).static final StringDeprecated.static final StringThe Unix line separator string.static final StringThe Windows line separator string.private static final byte[]The default buffer to use for the skip() methods.private static char[] -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BufferedInputStreambuffer(InputStream inputStream) Returns the given InputStream if it is already aBufferedInputStream, otherwise creates a BufferedInputStream from the given InputStream.static BufferedInputStreambuffer(InputStream inputStream, int size) Returns the given InputStream if it is already aBufferedInputStream, otherwise creates a BufferedInputStream from the given InputStream.static BufferedOutputStreambuffer(OutputStream outputStream) Returns the given OutputStream if it is already aBufferedOutputStream, otherwise creates a BufferedOutputStream from the given OutputStream.static BufferedOutputStreambuffer(OutputStream outputStream, int size) Returns the given OutputStream if it is already aBufferedOutputStream, otherwise creates a BufferedOutputStream from the given OutputStream.static BufferedReaderReturns the given reader if it is already aBufferedReader, otherwise creates a BufferedReader from the given reader.static BufferedReaderReturns the given reader if it is already aBufferedReader, otherwise creates a BufferedReader from the given reader.static BufferedWriterReturns the given Writer if it is already aBufferedWriter, otherwise creates a BufferedWriter from the given Writer.static BufferedWriterReturns the given Writer if it is already aBufferedWriter, otherwise creates a BufferedWriter from the given Writer.static voidCloses the givenCloseableas a null-safe operation.static voidCloses the givenCloseableas a null-safe operation.static voidclose(Closeable closeable, IOConsumer<IOException> consumer) Closes the givenCloseableas a null-safe operation.static voidclose(URLConnection conn) Closes a URLConnection.static voidcloseQuietly(Closeable closeable) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Closeable... closeables) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Closeable closeable, Consumer<IOException> consumer) Closes the givenCloseableas a null-safe operation while consuming IOException by the givenconsumer.static voidcloseQuietly(InputStream input) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(OutputStream output) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Reader input) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Writer output) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(ServerSocket serverSocket) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Socket socket) Deprecated.As of 2.6 deprecated without replacement.static voidcloseQuietly(Selector selector) Deprecated.As of 2.6 deprecated without replacement.static longconsume(InputStream input) Consumes bytes from aInputStreamand ignores them.static booleancontentEquals(InputStream input1, InputStream input2) Compares the contents of two Streams to determine if they are equal or not.static booleancontentEquals(Reader input1, Reader input2) Compares the contents of two Readers to determine if they are equal or not.static booleancontentEqualsIgnoreEOL(Reader input1, Reader input2) Compares the contents of two Readers to determine if they are equal or not, ignoring EOL characters.static intcopy(InputStream input, OutputStream output) Copies bytes from anInputStreamto anOutputStream.static longcopy(InputStream input, OutputStream output, int bufferSize) Copies bytes from anInputStreamto anOutputStreamusing an internal buffer of the given size.static voidcopy(InputStream input, Writer output) Deprecated.2.5 usecopy(InputStream, Writer, Charset)insteadstatic voidcopy(InputStream input, Writer output, String inputCharsetName) Copies bytes from anInputStreamto chars on aWriterusing the specified character encoding.static voidcopy(InputStream input, Writer output, Charset inputCharset) Copies bytes from anInputStreamto chars on aWriterusing the specified character encoding.static voidcopy(Reader input, OutputStream output) Deprecated.2.5 usecopy(Reader, OutputStream, Charset)insteadstatic voidcopy(Reader input, OutputStream output, String outputCharsetName) Copies chars from aReaderto bytes on anOutputStreamusing the specified character encoding, and calling flush.static voidcopy(Reader input, OutputStream output, Charset outputCharset) Copies chars from aReaderto bytes on anOutputStreamusing the specified character encoding, and calling flush.static intCopies chars from aReaderto aWriter.static longcopy(Reader input, Appendable output) Copies chars from aReaderto aAppendable.static longcopy(Reader input, Appendable output, CharBuffer buffer) Copies chars from aReaderto anAppendable.static longcopyLarge(InputStream input, OutputStream output) Copies bytes from a large (over 2GB)InputStreamto anOutputStream.static longcopyLarge(InputStream input, OutputStream output, byte[] buffer) Copies bytes from a large (over 2GB)InputStreamto anOutputStream.static longcopyLarge(InputStream input, OutputStream output, long inputOffset, long length) Copies some or all bytes from a large (over 2GB)InputStreamto anOutputStream, optionally skipping input bytes.static longcopyLarge(InputStream input, OutputStream output, long inputOffset, long length, byte[] buffer) Copies some or all bytes from a large (over 2GB)InputStreamto anOutputStream, optionally skipping input bytes.static longCopies chars from a large (over 2GB)Readerto aWriter.static longCopies chars from a large (over 2GB)Readerto aWriter.static longCopies some or all chars from a large (over 2GB)InputStreamto anOutputStream, optionally skipping input chars.static longCopies some or all chars from a large (over 2GB)InputStreamto anOutputStream, optionally skipping input chars.static intlength(byte[] array) Returns the length of the given array in a null-safe manner.static intlength(char[] array) Returns the length of the given array in a null-safe manner.static intlength(CharSequence csq) Returns the length of the given CharSequence in a null-safe manner.static intReturns the length of the given array in a null-safe manner.static LineIteratorlineIterator(InputStream input, String charsetName) Returns an Iterator for the lines in anInputStream, using the character encoding specified (or default encoding if null).static LineIteratorlineIterator(InputStream input, Charset charset) Returns an Iterator for the lines in anInputStream, using the character encoding specified (or default encoding if null).static LineIteratorlineIterator(Reader reader) Returns an Iterator for the lines in aReader.static intread(InputStream input, byte[] buffer) Reads bytes from an input stream.static intread(InputStream input, byte[] buffer, int offset, int length) Reads bytes from an input stream.static intReads characters from an input character stream.static intReads characters from an input character stream.static intread(ReadableByteChannel input, ByteBuffer buffer) Reads bytes from a ReadableByteChannel.static voidreadFully(InputStream input, byte[] buffer) Reads the requested number of bytes or fail if there are not enough left.static voidreadFully(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 voidReads the requested number of characters or fail if there are not enough left.static voidReads the requested number of characters or fail if there are not enough left.static voidreadFully(ReadableByteChannel input, ByteBuffer buffer) Reads the requested number of bytes or fail if there are not enough left.readLines(InputStream input) Deprecated.2.5 usereadLines(InputStream, Charset)insteadreadLines(InputStream input, String charsetName) Gets the contents of anInputStreamas a list of Strings, one entry per line, using the specified character encoding.readLines(InputStream input, Charset charset) Gets the contents of anInputStreamas a list of Strings, one entry per line, using the specified character encoding.Gets the contents of aReaderas a list of Strings, one entry per line.static byte[]resourceToByteArray(String name) Gets the contents of a classpath resource as a byte array.static byte[]resourceToByteArray(String name, ClassLoader classLoader) Gets the contents of a classpath resource as a byte array.static StringresourceToString(String name, Charset charset) Gets the contents of a classpath resource as a String using the specified character encoding.static StringresourceToString(String name, Charset charset, ClassLoader classLoader) Gets the contents of a classpath resource as a String using the specified character encoding.static URLresourceToURL(String name) Gets a URL pointing to the given classpath resource.static URLresourceToURL(String name, ClassLoader classLoader) Gets a URL pointing to the given classpath resource.static longskip(InputStream input, long toSkip) Skips bytes from an input byte stream.static longSkips characters from an input character stream.static longskip(ReadableByteChannel input, long toSkip) Skips bytes from a ReadableByteChannel.static voidskipFully(InputStream input, long toSkip) Skips the requested number of bytes or fail if there are not enough left.static voidSkips the requested number of characters or fail if there are not enough left.static voidskipFully(ReadableByteChannel input, long toSkip) Skips the requested number of bytes or fail if there are not enough left.static InputStreamtoBufferedInputStream(InputStream input) Fetches entire contents of anInputStreamand represent same data as result InputStream.static InputStreamtoBufferedInputStream(InputStream input, int size) Fetches entire contents of anInputStreamand represent same data as result InputStream.static BufferedReadertoBufferedReader(Reader reader) Returns the given reader if it is aBufferedReader, otherwise creates a BufferedReader from the given reader.static BufferedReadertoBufferedReader(Reader reader, int size) Returns the given reader if it is aBufferedReader, otherwise creates a BufferedReader from the given reader.static byte[]toByteArray(InputStream input) Gets the contents of anInputStreamas abyte[].static byte[]toByteArray(InputStream input, int size) Gets the contents of anInputStreamas abyte[].static byte[]toByteArray(InputStream input, long size) Gets contents of anInputStreamas abyte[].static byte[]toByteArray(Reader input) Deprecated.2.5 usetoByteArray(Reader, Charset)insteadstatic byte[]toByteArray(Reader input, String charsetName) Gets the contents of aReaderas abyte[]using the specified character encoding.static byte[]toByteArray(Reader input, Charset charset) Gets the contents of aReaderas abyte[]using the specified character encoding.static byte[]toByteArray(String input) Deprecated.2.5 UseString.getBytes()insteadstatic byte[]toByteArray(URI uri) Gets the contents of aURIas abyte[].static byte[]toByteArray(URL url) Gets the contents of aURLas abyte[].static byte[]toByteArray(URLConnection urlConn) Gets the contents of aURLConnectionas abyte[].static char[]Deprecated.2.5 usetoCharArray(InputStream, Charset)insteadstatic char[]toCharArray(InputStream is, String charsetName) Gets the contents of anInputStreamas a character array using the specified character encoding.static char[]toCharArray(InputStream is, Charset charset) Gets the contents of anInputStreamas a character array using the specified character encoding.static char[]toCharArray(Reader input) Gets the contents of aReaderas a character array.static InputStreamtoInputStream(CharSequence input) Deprecated.2.5 usetoInputStream(CharSequence, Charset)insteadstatic InputStreamtoInputStream(CharSequence input, String charsetName) Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.static InputStreamtoInputStream(CharSequence input, Charset charset) Converts the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.static InputStreamtoInputStream(String input) Deprecated.2.5 usetoInputStream(String, Charset)insteadstatic InputStreamtoInputStream(String input, String charsetName) Converts the specified string to an input stream, encoded as bytes using the specified character encoding.static InputStreamtoInputStream(String input, Charset charset) Converts the specified string to an input stream, encoded as bytes using the specified character encoding.static StringtoString(byte[] input) Deprecated.2.5 UseString(byte[])insteadstatic StringGets the contents of abyte[]as a String using the specified character encoding.static StringtoString(InputStream input) Deprecated.2.5 usetoString(InputStream, Charset)insteadstatic StringtoString(InputStream input, String charsetName) Gets the contents of anInputStreamas a String using the specified character encoding.static StringtoString(InputStream input, Charset charset) Gets the contents of anInputStreamas a String using the specified character encoding.static StringGets the contents of aReaderas a String.static StringDeprecated.2.5 usetoString(URI, Charset)insteadstatic StringGets the contents at the given URI.static StringGets the contents at the given URI.static StringDeprecated.2.5 usetoString(URL, Charset)insteadstatic StringGets the contents at the given URL.static StringGets the contents at the given URL.static voidwrite(byte[] data, OutputStream output) Writes bytes from abyte[]to anOutputStream.static voidDeprecated.2.5 usewrite(byte[], Writer, Charset)insteadstatic voidWrites bytes from abyte[]to chars on aWriterusing the specified character encoding.static voidWrites bytes from abyte[]to chars on aWriterusing the specified character encoding.static voidwrite(char[] data, OutputStream output) Deprecated.2.5 usewrite(char[], OutputStream, Charset)insteadstatic voidwrite(char[] data, OutputStream output, String charsetName) Writes chars from achar[]to bytes on anOutputStreamusing the specified character encoding.static voidwrite(char[] data, OutputStream output, Charset charset) Writes chars from achar[]to bytes on anOutputStreamusing the specified character encoding.static voidWrites chars from achar[]to aWriterstatic voidwrite(CharSequence data, OutputStream output) Deprecated.2.5 usewrite(CharSequence, OutputStream, Charset)insteadstatic voidwrite(CharSequence data, OutputStream output, String charsetName) Writes chars from aCharSequenceto bytes on anOutputStreamusing the specified character encoding.static voidwrite(CharSequence data, OutputStream output, Charset charset) Writes chars from aCharSequenceto bytes on anOutputStreamusing the specified character encoding.static voidwrite(CharSequence data, Writer output) Writes chars from aCharSequenceto aWriter.static voidwrite(StringBuffer data, OutputStream output) Deprecated.replaced by write(CharSequence, OutputStream)static voidwrite(StringBuffer data, OutputStream output, String charsetName) Deprecated.replaced by write(CharSequence, OutputStream, String)static voidwrite(StringBuffer data, Writer output) Deprecated.replaced by write(CharSequence, Writer)static voidwrite(String data, OutputStream output) Deprecated.2.5 usewrite(String, OutputStream, Charset)insteadstatic voidwrite(String data, OutputStream output, String charsetName) Writes chars from aStringto bytes on anOutputStreamusing the specified character encoding.static voidwrite(String data, OutputStream output, Charset charset) Writes chars from aStringto bytes on anOutputStreamusing the specified character encoding.static voidWrites chars from aStringto aWriter.static voidwriteChunked(byte[] data, OutputStream output) Writes bytes from abyte[]to anOutputStreamusing chunked writes.static voidwriteChunked(char[] data, Writer output) Writes chars from achar[]to aWriterusing chunked writes.static voidwriteLines(Collection<?> lines, String lineEnding, OutputStream output) Deprecated.2.5 usewriteLines(Collection, String, OutputStream, Charset)insteadstatic voidwriteLines(Collection<?> lines, String lineEnding, OutputStream output, String charsetName) Writes thetoString()value of each item in a collection to anOutputStreamline by line, using the specified character encoding and the specified line ending.static voidwriteLines(Collection<?> lines, String lineEnding, OutputStream output, Charset charset) Writes thetoString()value of each item in a collection to anOutputStreamline by line, using the specified character encoding and the specified line ending.static voidwriteLines(Collection<?> lines, String lineEnding, Writer writer) Writes thetoString()value of each item in a collection to aWriterline by line, using the specified line ending.static Writerwriter(Appendable appendable) Returns the given Appendable if it is already aWriter, otherwise creates a Writer wrapper around the given Appendable.
-
Field Details
-
EMPTY_BYTE_ARRAY
private static final byte[] EMPTY_BYTE_ARRAY -
DEFAULT_BUFFER_SIZE
public static final int DEFAULT_BUFFER_SIZEThe default buffer size (8192) to use in copy methods.- See Also:
-
DIR_SEPARATOR
public static final char DIR_SEPARATORThe system directory separator character. -
DIR_SEPARATOR_UNIX
public static final char DIR_SEPARATOR_UNIXThe Unix directory separator character.- See Also:
-
DIR_SEPARATOR_WINDOWS
public static final char DIR_SEPARATOR_WINDOWSThe Windows directory separator character.- See Also:
-
EOF
public static final int EOFRepresents the end-of-file (or stream).- Since:
- 2.5 (made public)
- 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:
-
SKIP_BYTE_BUFFER
private static final byte[] SKIP_BYTE_BUFFERThe default buffer to use for the skip() methods. -
SKIP_CHAR_BUFFER
private static char[] SKIP_CHAR_BUFFER
-
-
Constructor Details
-
IOUtils
public IOUtils()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
BufferedInputStreamfor 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
BufferedInputStreamfor 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
BufferedOutputStreamfor 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
BufferedOutputStreamfor 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
BufferedReaderfor 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
BufferedReaderfor 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
BufferedWriterfor 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
BufferedWriterfor the given Writer - Throws:
NullPointerException- if the input parameter is null- Since:
- 2.5
-
close
Closes the givenCloseableas 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 givenCloseableas a null-safe operation.- Parameters:
closeables- The resource(s) to close, may be null.- Throws:
IOException- if an I/O error occurs.- Since:
- 2.8.0
-
close
Closes the givenCloseableas 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
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes aCloseableunconditionally.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); }- Parameters:
closeable- the objects to close, may be null or already closed- Since:
- 2.0
- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes aCloseableunconditionally.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); }- Parameters:
closeables- the objects to close, may be null or already closed- Since:
- 2.5
- See Also:
-
closeQuietly
Closes the givenCloseableas 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
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes anInputStreamunconditionally.Equivalent to
InputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.Example code:
byte[] data = new byte[1024]; InputStream in = null; try { in = new FileInputStream("foo.txt"); in.read(data); in.close(); //close errors are handled } catch (Exception e) { // error handling } finally { IOUtils.closeQuietly(in); }- Parameters:
input- the InputStream to close, may be null or already closed- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes anOutputStreamunconditionally.Equivalent to
OutputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.Example code:
byte[] data = "Hello, World".getBytes(); OutputStream out = null; try { out = new FileOutputStream("foo.txt"); out.write(data); out.close(); //close errors are handled } catch (IOException e) { // error handling } finally { IOUtils.closeQuietly(out); }- Parameters:
output- the OutputStream to close, may be null or already closed- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes anReaderunconditionally.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); }- Parameters:
input- the Reader to close, may be null or already closed- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes aSelectorunconditionally.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); }- Parameters:
selector- the Selector to close, may be null or already closed- Since:
- 2.2
- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes aServerSocketunconditionally.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); }- Parameters:
serverSocket- the ServerSocket to close, may be null or already closed- Since:
- 2.2
- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes aSocketunconditionally.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); }- Parameters:
socket- the Socket to close, may be null or already closed- Since:
- 2.0
- See Also:
-
closeQuietly
Deprecated.As of 2.6 deprecated without replacement. Please use the try-with-resources statement or handle suppressed exceptions manually.Closes anWriterunconditionally.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); }- Parameters:
output- the Writer to close, may be null or already closed- See Also:
-
consume
Consumes bytes from aInputStreamand ignores them.The buffer size is given by
DEFAULT_BUFFER_SIZE.- Parameters:
input- theInputStreamto read from- Returns:
- the number of bytes copied. or
0ifinput is null. - Throws:
IOException- if an I/O error occurs- Since:
- 2.8.0
-
contentEquals
Compares the contents of two Streams to determine if they are equal or not.This method buffers the input internally using
BufferedInputStreamif they are not already buffered.- Parameters:
input1- the first streaminput2- the second stream- Returns:
- true if the content of the streams are equal or they both don't exist, false otherwise
- Throws:
NullPointerException- if either input is nullIOException- if an I/O error occurs
-
contentEquals
Compares the contents of two Readers to determine if they are equal or not.This method buffers the input internally using
BufferedReaderif 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
Compares the contents of two Readers to determine if they are equal or not, ignoring EOL characters.This method buffers the input internally using
BufferedReaderif they are not already buffered.- Parameters:
input1- the first readerinput2- the second reader- Returns:
- true if the content of the readers are equal (ignoring EOL differences), false otherwise
- Throws:
NullPointerException- if either input is nullIOException- if an I/O error occurs- Since:
- 2.2
-
copy
Copies bytes from anInputStreamto anOutputStream.This method buffers the input internally, so there is no need to use a
BufferedInputStream.Large streams (over 2GB) will return a bytes copied value of
-1after the copy has completed since the correct number of bytes cannot be returned as an int. For large streams use thecopyLarge(InputStream, OutputStream)method.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write to- Returns:
- the number of bytes copied, or -1 if > Integer.MAX_VALUE, or
0ifinput is null. - Throws:
NullPointerException- if the output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copy
Copies bytes from anInputStreamto anOutputStreamusing an internal buffer of the given size.This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write tobufferSize- the bufferSize used to copy from the input to the output- Returns:
- the number of bytes copied. or
0ifinput is null. - Throws:
NullPointerException- if the output is nullIOException- if an I/O error occurs- Since:
- 2.5
-
copy
Deprecated.2.5 usecopy(InputStream, Writer, Charset)insteadCopies bytes from anInputStreamto chars on aWriterusing the default character encoding of the platform.This method buffers the input internally, so there is no need to use a
BufferedInputStream.This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto write to- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copy
Copies bytes from anInputStreamto chars on aWriterusing the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto 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 output, String inputCharsetName) throws IOException Copies bytes from anInputStreamto chars on aWriterusing the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.Character encoding names can be found at IANA.
This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto write 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
copy
Copies chars from aReaderto 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
-1after the copy has completed since the correct number of chars cannot be returned as an int. For large streams use thecopyLarge(Reader, Writer)method.- Parameters:
input- theReaderto read fromoutput- theAppendableto 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 aReaderto anAppendable.This method uses the provided buffer, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromoutput- theAppendableto 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.2.5 usecopy(Reader, OutputStream, Charset)insteadCopies chars from aReaderto bytes on anOutputStreamusing 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:
input- theReaderto read fromoutput- theOutputStreamto 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 input, OutputStream output, Charset outputCharset) throws IOException Copies chars from aReaderto bytes on anOutputStreamusing 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:
input- theReaderto read fromoutput- theOutputStreamto 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 input, OutputStream output, String outputCharsetName) throws IOException Copies chars from aReaderto bytes on anOutputStreamusing 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:
input- theReaderto read fromoutput- theOutputStreamto 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
copy
Copies chars from aReaderto aWriter.This method buffers the input internally, so there is no need to use a
BufferedReader.Large streams (over 2GB) will return a chars copied value of
-1after the copy has completed since the correct number of chars cannot be returned as an int. For large streams use thecopyLarge(Reader, Writer)method.- Parameters:
input- theReaderto read fromoutput- theWriterto write to- Returns:
- the number of characters copied, or -1 if > Integer.MAX_VALUE
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
copyLarge
Copies bytes from a large (over 2GB)InputStreamto anOutputStream.This method buffers the input internally, so there is no need to use a
BufferedInputStream.The buffer size is given by
DEFAULT_BUFFER_SIZE.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write to- Returns:
- the number of bytes copied. or
0ifinput is null. - Throws:
NullPointerException- if the output is nullIOException- if an I/O error occurs- Since:
- 1.3
-
copyLarge
public static long copyLarge(InputStream input, OutputStream output, byte[] buffer) throws IOException Copies bytes from a large (over 2GB)InputStreamto anOutputStream.This method uses the provided buffer, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write tobuffer- the buffer to use for the copy- Returns:
- the number of bytes copied. or
0ifinput is null. - Throws:
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)InputStreamto 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- theInputStreamto read fromoutput- theOutputStreamto 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)InputStreamto 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- theInputStreamto read fromoutput- theOutputStreamto 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)Readerto aWriter.This method buffers the input internally, so there is no need to use a
BufferedReader.The buffer size is given by
DEFAULT_BUFFER_SIZE.- Parameters:
input- theReaderto read fromoutput- theWriterto write to- Returns:
- the number of characters copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 1.3
-
copyLarge
Copies chars from a large (over 2GB)Readerto aWriter.This method uses the provided buffer, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromoutput- theWriterto write tobuffer- the buffer to be used for the copy- Returns:
- the number of characters copied
- Throws:
NullPointerException- if the input or output is nullIOException- if an I/O error occurs- Since:
- 2.2
-
copyLarge
public static long copyLarge(Reader input, Writer output, long inputOffset, long length) throws IOException Copies some or all chars from a large (over 2GB)InputStreamto 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:
input- theReaderto read fromoutput- theWriterto 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 input, Writer output, long inputOffset, long length, char[] buffer) throws IOException Copies some or all chars from a large (over 2GB)InputStreamto anOutputStream, optionally skipping input chars.This method uses the provided buffer, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromoutput- theWriterto 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
public static int length(byte[] array) 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
public static int length(char[] array) 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).LineIteratorholds a reference to the openInputStreamspecified here. When you have finished with the iterator you should close the stream to free internal resources. This can be done by closing the stream directly, or by callingLineIterator.close()orLineIterator.closeQuietly(LineIterator).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- theInputStreamto read from, 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 nullIOException- if an I/O error occurs, such as if the encoding is invalid- Since:
- 2.3
-
lineIterator
Returns an Iterator for the lines in anInputStream, using the character encoding specified (or default encoding if null).LineIteratorholds a reference to the openInputStreamspecified here. When you have finished with the iterator you should close the stream to free internal resources. This can be done by closing the stream directly, or by callingLineIterator.close()orLineIterator.closeQuietly(LineIterator).The recommended usage pattern is:
try { LineIterator it = IOUtils.lineIterator(stream, "UTF-8"); while (it.hasNext()) { String line = it.nextLine(); /// do something with line } } finally { IOUtils.closeQuietly(stream); }- Parameters:
input- theInputStreamto read from, 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 nullIOException- if an I/O error occurs, such as if the encoding is invalidUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.2
-
lineIterator
Returns an Iterator for the lines in aReader.LineIteratorholds a reference to the openReaderspecified here. When you have finished with the iterator you should close the reader to free internal resources. This can be done by closing the reader directly, or by callingLineIterator.close()orLineIterator.closeQuietly(LineIterator).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- theReaderto read from, not null- Returns:
- an Iterator of the lines in the reader, never null
- Throws:
IllegalArgumentException- 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 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:
IOException- 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:
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 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:
input- 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:
IOException- 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:
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 characters read was incorrect- Since:
- 2.2
-
readFully
public static void readFully(Reader input, 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:
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 characters read was incorrect- Since:
- 2.2
-
readLines
Deprecated.2.5 usereadLines(InputStream, Charset)insteadGets the contents of anInputStreamas 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- theInputStreamto read from, not null- Returns:
- the list of Strings, never null
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs- Since:
- 1.1
-
readLines
Gets the contents of anInputStreamas 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- theInputStreamto read from, not nullcharset- the charset to use, null means platform default- Returns:
- the list of Strings, never null
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs- Since:
- 2.3
-
readLines
Gets the contents of anInputStreamas 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- theInputStreamto read from, 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 nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
readLines
Gets the contents of aReaderas a list of Strings, one entry per line.This method buffers the input internally, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read from, not null- Returns:
- the list of Strings, never null
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs- Since:
- 1.1
-
resourceToByteArray
Gets the contents of a classpath resource as a byte array.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resource- Returns:
- the requested byte array
- Throws:
IOException- if an I/O error occurs- Since:
- 2.6
-
resourceToByteArray
Gets the contents of a classpath resource as a byte array.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resourceclassLoader- 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- Since:
- 2.6
-
resourceToString
Gets the contents of a classpath resource as a String using the specified character encoding.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resourcecharset- the charset to use, null means platform default- Returns:
- the requested String
- Throws:
IOException- if an I/O error occurs- Since:
- 2.6
-
resourceToString
public static String resourceToString(String name, Charset charset, ClassLoader classLoader) throws IOException Gets the contents of a classpath resource as a String using the specified character encoding.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resourcecharset- 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
-
resourceToURL
Gets a URL pointing to the given classpath resource.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resource- Returns:
- the requested URL
- Throws:
IOException- if an I/O error occurs- Since:
- 2.6
-
resourceToURL
Gets a URL pointing to the given classpath resource.It is expected the given
nameto be absolute. The behavior is not well-defined otherwise.- Parameters:
name- name of the desired resourceclassLoader- the class loader that the resolution of the resource is delegated to- Returns:
- the requested URL
- Throws:
IOException- if an I/O error occurs- 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 skiptoSkip- 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
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:
input- 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
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:
input- 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 anInputStreamand 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.
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 anInputStreamand 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.
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
BufferedReaderfor 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
BufferedReaderfor the given reader - Throws:
NullPointerException- if the input parameter is null- Since:
- 2.5
- See Also:
-
toByteArray
Gets the contents of anInputStreamas abyte[].This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read from- Returns:
- the requested byte array
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
toByteArray
Gets the contents of anInputStreamas abyte[]. Use this method instead oftoByteArray(InputStream)whenInputStreamsize is known- Parameters:
input- theInputStreamto read fromsize- the size ofInputStream- Returns:
- the requested byte array
- Throws:
IOException- if an I/O error occurs orInputStreamsize differ from parameter sizeIllegalArgumentException- if size is less than zero- Since:
- 2.1
-
toByteArray
Gets contents of anInputStreamas abyte[]. Use this method instead oftoByteArray(InputStream)whenInputStreamsize is known. NOTE: the method checks that the length can safely be cast to an int without truncation before usingtoByteArray(java.io.InputStream, int)to read into the byte array. (Arrays can have no more than Integer.MAX_VALUE entries anyway)- Parameters:
input- theInputStreamto read fromsize- the size ofInputStream- Returns:
- the requested byte array
- Throws:
IOException- if an I/O error occurs orInputStreamsize differ from parameter sizeIllegalArgumentException- if size is less than zero or size is greater than Integer.MAX_VALUE- Since:
- 2.1
- See Also:
-
toByteArray
Deprecated.2.5 usetoByteArray(Reader, Charset)insteadGets the contents of aReaderas 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:
input- theReaderto read from- Returns:
- the requested byte array
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
toByteArray
Gets the contents of aReaderas abyte[]using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromcharset- 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 aReaderas 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:
input- theReaderto read fromcharsetName- 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
toByteArray
Deprecated.2.5 UseString.getBytes()insteadGets the contents of aStringas abyte[]using the default character encoding of the platform.This is the same as
String.getBytes().- Parameters:
input- theStringto convert- Returns:
- the requested byte array
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs (never occurs)
-
toByteArray
Gets the contents of aURIas abyte[].- Parameters:
uri- theURIto 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 aURLas abyte[].- Parameters:
url- theURLto 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 aURLConnectionas abyte[].- Parameters:
urlConn- theURLConnectionto read- Returns:
- the requested byte array
- Throws:
NullPointerException- if the urlConn is nullIOException- if an I/O exception occurs- Since:
- 2.4
-
toCharArray
Deprecated.2.5 usetoCharArray(InputStream, Charset)insteadGets the contents of anInputStreamas 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:
is- theInputStreamto read from- 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 anInputStreamas a character array using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
is- theInputStreamto read fromcharset- 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 anInputStreamas 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:
is- theInputStreamto read fromcharsetName- 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
toCharArray
Gets the contents of aReaderas a character array.This method buffers the input internally, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read from- Returns:
- the requested character array
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs- Since:
- 1.1
-
toInputStream
Deprecated.2.5 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:
IOException- if the encoding is invalidUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 2.0
-
toInputStream
Deprecated.2.5 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:
IOException- if the encoding is invalidUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
toString
Deprecated.2.5 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 from- Returns:
- the requested String
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs (never occurs)
-
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 read fromcharsetName- 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 occurs (never occurs)
-
toString
Deprecated.2.5 usetoString(InputStream, Charset)insteadGets the contents of anInputStreamas 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- theInputStreamto read from- Returns:
- the requested String
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
toString
Gets the contents of anInputStreamas a String using the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromcharset- 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 anInputStreamas a String using the specified character encoding.Character encoding names can be found at IANA.
This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromcharsetName- 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.
-
toString
Gets the contents of aReaderas a String.This method buffers the input internally, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read from- Returns:
- the requested String
- Throws:
NullPointerException- if the input is nullIOException- if an I/O error occurs
-
toString
Deprecated.2.5 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 2.1
-
toString
Deprecated.2.5 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 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- theOutputStreamto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.2.5 usewrite(byte[], Writer, Charset)insteadWrites bytes from abyte[]to chars on aWriterusing 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 ignoredoutput- theWriterto 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 aWriterusing the specified character encoding.This method uses
String(byte[], String).- Parameters:
data- the byte array to write, do not modify during output, null ignoredoutput- theWriterto 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 aWriterusing 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 ignoredoutput- theWriterto write tocharsetName- the name of the requested charset, null means platform default- Throws:
NullPointerException- if output is nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
write
Deprecated.2.5 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- theOutputStreamto 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 anOutputStreamusing 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- theOutputStreamto 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 anOutputStreamusing 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- theOutputStreamto write tocharsetName- the name of the requested charset, null means platform default- Throws:
NullPointerException- if output is nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 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 ignoredoutput- theWriterto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.2.5 usewrite(CharSequence, OutputStream, Charset)insteadWrites chars from aCharSequenceto bytes on anOutputStreamusing the default character encoding of the platform.This method uses
String.getBytes().- Parameters:
data- theCharSequenceto write, null ignoredoutput- theOutputStreamto 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 aCharSequenceto bytes on anOutputStreamusing the specified character encoding.This method uses
String.getBytes(String).- Parameters:
data- theCharSequenceto write, null ignoredoutput- theOutputStreamto 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 aCharSequenceto bytes on anOutputStreamusing the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String).- Parameters:
data- theCharSequenceto write, null ignoredoutput- theOutputStreamto write tocharsetName- the name of the requested charset, null means platform default- Throws:
NullPointerException- if output is nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 2.0
-
write
Writes chars from aCharSequenceto aWriter.- Parameters:
data- theCharSequenceto write, null ignoredoutput- theWriterto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 2.0
-
write
Deprecated.2.5 usewrite(String, OutputStream, Charset)insteadWrites chars from aStringto bytes on anOutputStreamusing the default character encoding of the platform.This method uses
String.getBytes().- Parameters:
data- theStringto write, null ignoredoutput- theOutputStreamto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
write
Writes chars from aStringto bytes on anOutputStreamusing the specified character encoding.This method uses
String.getBytes(String).- Parameters:
data- theStringto write, null ignoredoutput- theOutputStreamto 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 aStringto bytes on anOutputStreamusing the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String).- Parameters:
data- theStringto write, null ignoredoutput- theOutputStreamto write tocharsetName- the name of the requested charset, null means platform default- Throws:
NullPointerException- if output is nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
write
Writes chars from aStringto aWriter.- Parameters:
data- theStringto write, null ignoredoutput- theWriterto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
write
Deprecated.replaced by write(CharSequence, OutputStream)Writes chars from aStringBufferto bytes on anOutputStreamusing the default character encoding of the platform.This method uses
String.getBytes().- Parameters:
data- theStringBufferto write, null ignoredoutput- theOutputStreamto 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.replaced by write(CharSequence, OutputStream, String)Writes chars from aStringBufferto bytes on anOutputStreamusing the specified character encoding.Character encoding names can be found at IANA.
This method uses
String.getBytes(String).- Parameters:
data- theStringBufferto write, null ignoredoutput- theOutputStreamto write tocharsetName- the name of the requested charset, null means platform default- Throws:
NullPointerException- if output is nullIOException- if an I/O error occursUnsupportedCharsetException- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
write
Deprecated.replaced by write(CharSequence, Writer)Writes chars from aStringBufferto aWriter.- Parameters:
data- theStringBufferto write, null ignoredoutput- theWriterto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 1.1
-
writeChunked
Writes bytes from abyte[]to anOutputStreamusing 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- theOutputStreamto write to- Throws:
NullPointerException- if output is nullIOException- if an I/O error occurs- Since:
- 2.5
-
writeChunked
Writes chars from achar[]to aWriterusing 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 ignoredoutput- theWriterto 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.2.5 usewriteLines(Collection, String, OutputStream, Charset)insteadWrites thetoString()value of each item in a collection to anOutputStreamline 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- theOutputStreamto 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 thetoString()value of each item in a collection to anOutputStreamline by line, using the specified character encoding 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- theOutputStreamto write to, not null, not closedcharset- the charset to use, null means platform default- Throws:
NullPointerException- if the 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 thetoString()value of each item in a collection to anOutputStreamline 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- theOutputStreamto 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- thrown instead of.UnsupportedEncodingExceptionin version 2.2 if the encoding is not supported.- Since:
- 1.1
-
writeLines
public static void writeLines(Collection<?> lines, String lineEnding, Writer writer) throws IOException Writes thetoString()value of each item in a collection to aWriterline 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- theWriterto 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().