|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.io.IOUtils
public class IOUtils
General IO stream manipulation utilities.
This class provides static utility methods for input/output operations.
The byte-to-char methods and char-to-byte methods involve a conversion step. Two methods are provided in each case, one that uses the platform default encoding and the other which allows you to specify an encoding. You are encouraged to always specify an encoding because relying on the platform default can lead to unexpected results, for example when moving from development to production.
All the methods in this class that read a stream are buffered internally.
This means that there is no cause to use a BufferedInputStream
or BufferedReader
. The default buffer size of 4K has been shown
to be efficient in tests.
Wherever possible, the methods in this class do not flush or close the stream. This is to avoid making non-portable assumptions about the streams' origin and further use. Thus the caller is still responsible for closing streams after use.
Origin of code: Excalibur.
Field Summary | |
---|---|
static char |
DIR_SEPARATOR
The system directory separator character. |
static char |
DIR_SEPARATOR_UNIX
The Unix directory separator character. |
static char |
DIR_SEPARATOR_WINDOWS
The Windows directory separator character. |
static String |
LINE_SEPARATOR
The system line separator string. |
static String |
LINE_SEPARATOR_UNIX
The Unix line separator string. |
static String |
LINE_SEPARATOR_WINDOWS
The Windows line separator string. |
Constructor Summary | |
---|---|
IOUtils()
Instances should NOT be constructed in standard programming. |
Method Summary | |
---|---|
static void |
closeQuietly(Closeable closeable)
Unconditionally close a Closeable . |
static void |
closeQuietly(InputStream input)
Unconditionally close an InputStream . |
static void |
closeQuietly(OutputStream output)
Unconditionally close an OutputStream . |
static void |
closeQuietly(Reader input)
Unconditionally close an Reader . |
static void |
closeQuietly(Selector selector)
Unconditionally close a Selector . |
static void |
closeQuietly(ServerSocket sock)
Unconditionally close a ServerSocket . |
static void |
closeQuietly(Socket sock)
Unconditionally close a Socket . |
static void |
closeQuietly(Writer output)
Unconditionally close a Writer . |
static boolean |
contentEquals(InputStream input1,
InputStream input2)
Compare the contents of two Streams to determine if they are equal or not. |
static boolean |
contentEquals(Reader input1,
Reader input2)
Compare the contents of two Readers to determine if they are equal or not. |
static boolean |
contentEqualsIgnoreEOL(Reader input1,
Reader input2)
Compare the contents of two Readers to determine if they are equal or not, ignoring EOL characters. |
static int |
copy(InputStream input,
OutputStream output)
Copy bytes from an InputStream to an
OutputStream . |
static void |
copy(InputStream input,
Writer output)
Copy bytes from an InputStream to chars on a
Writer using the default character encoding of the platform. |
static void |
copy(InputStream input,
Writer output,
String encoding)
Copy bytes from an InputStream to chars on a
Writer using the specified character encoding. |
static void |
copy(Reader input,
OutputStream output)
Copy chars from a Reader to bytes on an
OutputStream using the default character encoding of the
platform, and calling flush. |
static void |
copy(Reader input,
OutputStream output,
String encoding)
Copy chars from a Reader to bytes on an
OutputStream using the specified character encoding, and
calling flush. |
static int |
copy(Reader input,
Writer output)
Copy chars from a Reader to a Writer . |
static long |
copyLarge(InputStream input,
OutputStream output)
Copy bytes from a large (over 2GB) InputStream to an
OutputStream . |
static long |
copyLarge(InputStream input,
OutputStream output,
byte[] buffer)
Copy bytes from a large (over 2GB) InputStream to an
OutputStream . |
static long |
copyLarge(InputStream input,
OutputStream output,
long inputOffset,
long length)
Copy some or all bytes from a large (over 2GB) InputStream to an
OutputStream , optionally skipping input bytes. |
static long |
copyLarge(InputStream input,
OutputStream output,
long inputOffset,
long length,
byte[] buffer)
Copy some or all bytes from a large (over 2GB) InputStream to an
OutputStream , optionally skipping input bytes. |
static long |
copyLarge(Reader input,
Writer output)
Copy chars from a large (over 2GB) Reader to a Writer . |
static long |
copyLarge(Reader input,
Writer output,
char[] buffer)
Copy chars from a large (over 2GB) Reader to a Writer . |
static long |
copyLarge(Reader input,
Writer output,
long inputOffset,
long length)
Copy some or all chars from a large (over 2GB) InputStream to an
OutputStream , optionally skipping input chars. |
static long |
copyLarge(Reader input,
Writer output,
long inputOffset,
long length,
char[] buffer)
Copy some or all chars from a large (over 2GB) InputStream to an
OutputStream , optionally skipping input chars. |
static LineIterator |
lineIterator(InputStream input,
String encoding)
Return an Iterator for the lines in an InputStream , using
the character encoding specified (or default encoding if null). |
static LineIterator |
lineIterator(Reader reader)
Return an Iterator for the lines in a Reader . |
static int |
read(InputStream input,
byte[] buffer)
Read bytes from an input stream. |
static int |
read(InputStream input,
byte[] buffer,
int offset,
int length)
Read bytes from an input stream. |
static int |
read(Reader input,
char[] buffer)
Read characters from an input character stream. |
static int |
read(Reader input,
char[] buffer,
int offset,
int length)
Read characters from an input character stream. |
static void |
readFully(InputStream input,
byte[] buffer)
Read the requested number of bytes or fail if there are not enough left. |
static void |
readFully(InputStream input,
byte[] buffer,
int offset,
int length)
Read the requested number of bytes or fail if there are not enough left. |
static void |
readFully(Reader input,
char[] buffer)
Read the requested number of characters or fail if there are not enough left. |
static void |
readFully(Reader input,
char[] buffer,
int offset,
int length)
Read the requested number of characters or fail if there are not enough left. |
static List<String> |
readLines(InputStream input)
Get the contents of an InputStream as a list of Strings,
one entry per line, using the default character encoding of the platform. |
static List<String> |
readLines(InputStream input,
String encoding)
Get the contents of an InputStream as a list of Strings,
one entry per line, using the specified character encoding. |
static List<String> |
readLines(Reader input)
Get the contents of a Reader as a list of Strings,
one entry per line. |
static long |
skip(InputStream input,
long toSkip)
Skip bytes from an input byte stream. |
static long |
skip(Reader input,
long toSkip)
Skip characters from an input character stream. |
static void |
skipFully(InputStream input,
long toSkip)
Skip the requested number of bytes or fail if there are not enough left. |
static void |
skipFully(Reader input,
long toSkip)
Skip the requested number of characters or fail if there are not enough left. |
static InputStream |
toBufferedInputStream(InputStream input)
Fetches entire contents of an InputStream and represent
same data as result InputStream. |
static BufferedReader |
toBufferedReader(Reader reader)
Returns the given reader if it is a BufferedReader , otherwise creates a toBufferedReader for the given
reader. |
static byte[] |
toByteArray(InputStream input)
Get the contents of an InputStream as a byte[] . |
static byte[] |
toByteArray(InputStream input,
int size)
Get the contents of an InputStream as a byte[] . |
static byte[] |
toByteArray(InputStream input,
long size)
Get contents of an InputStream as a byte[] . |
static byte[] |
toByteArray(Reader input)
Get the contents of a Reader as a byte[]
using the default character encoding of the platform. |
static byte[] |
toByteArray(Reader input,
String encoding)
Get the contents of a Reader as a byte[]
using the specified character encoding. |
static byte[] |
toByteArray(String input)
Deprecated. Use String.getBytes() |
static char[] |
toCharArray(InputStream is)
Get the contents of an InputStream as a character array
using the default character encoding of the platform. |
static char[] |
toCharArray(InputStream is,
String encoding)
Get the contents of an InputStream as a character array
using the specified character encoding. |
static char[] |
toCharArray(Reader input)
Get the contents of a Reader as a character array. |
static InputStream |
toInputStream(CharSequence input)
Convert the specified CharSequence to an input stream, encoded as bytes using the default character encoding of the platform. |
static InputStream |
toInputStream(CharSequence input,
String encoding)
Convert the specified CharSequence to an input stream, encoded as bytes using the specified character encoding. |
static InputStream |
toInputStream(String input)
Convert the specified string to an input stream, encoded as bytes using the default character encoding of the platform. |
static InputStream |
toInputStream(String input,
String encoding)
Convert the specified string to an input stream, encoded as bytes using the specified character encoding. |
static String |
toString(byte[] input)
Deprecated. Use String.String(byte[]) |
static String |
toString(byte[] input,
String encoding)
Deprecated. Use String.String(byte[],String) |
static String |
toString(InputStream input)
Get the contents of an InputStream as a String
using the default character encoding of the platform. |
static String |
toString(InputStream input,
String encoding)
Get the contents of an InputStream as a String
using the specified character encoding. |
static String |
toString(Reader input)
Get the contents of a Reader as a String. |
static String |
toString(URI uri)
Gets the contents at the given URI. |
static String |
toString(URI uri,
String encoding)
Gets the contents at the given URI. |
static String |
toString(URL url)
Gets the contents at the given URL. |
static String |
toString(URL url,
String encoding)
Gets the contents at the given URL. |
static void |
write(byte[] data,
OutputStream output)
Writes bytes from a byte[] to an OutputStream . |
static void |
write(byte[] data,
Writer output)
Writes bytes from a byte[] to chars on a Writer
using the default character encoding of the platform. |
static void |
write(byte[] data,
Writer output,
String encoding)
Writes bytes from a byte[] to chars on a Writer
using the specified character encoding. |
static void |
write(char[] data,
OutputStream output)
Writes chars from a char[] to bytes on an
OutputStream . |
static void |
write(char[] data,
OutputStream output,
String encoding)
Writes chars from a char[] to bytes on an
OutputStream using the specified character encoding. |
static void |
write(char[] data,
Writer output)
Writes chars from a char[] to a Writer
using the default character encoding of the platform. |
static void |
write(CharSequence data,
OutputStream output)
Writes chars from a CharSequence to bytes on an
OutputStream using the default character encoding of the
platform. |
static void |
write(CharSequence data,
OutputStream output,
String encoding)
Writes chars from a CharSequence to bytes on an
OutputStream using the specified character encoding. |
static void |
write(CharSequence data,
Writer output)
Writes chars from a CharSequence to a Writer . |
static void |
write(StringBuffer data,
OutputStream output)
Deprecated. replaced by write(CharSequence, OutputStream) |
static void |
write(StringBuffer data,
OutputStream output,
String encoding)
Deprecated. replaced by write(CharSequence, OutputStream, String) |
static void |
write(StringBuffer data,
Writer output)
Deprecated. replaced by write(CharSequence, Writer) |
static void |
write(String data,
OutputStream output)
Writes chars from a String to bytes on an
OutputStream using the default character encoding of the
platform. |
static void |
write(String data,
OutputStream output,
String encoding)
Writes chars from a String to bytes on an
OutputStream using the specified character encoding. |
static void |
write(String data,
Writer output)
Writes chars from a String to a Writer . |
static void |
writeLines(Collection<?> lines,
String lineEnding,
OutputStream output)
Writes the toString() value of each item in a collection to
an OutputStream line by line, using the default character
encoding of the platform and the specified line ending. |
static void |
writeLines(Collection<?> lines,
String lineEnding,
OutputStream output,
String encoding)
Writes the toString() value of each item in a collection to
an OutputStream line by line, using the specified character
encoding and the specified line ending. |
static void |
writeLines(Collection<?> lines,
String lineEnding,
Writer writer)
Writes the toString() value of each item in a collection to
a Writer line by line, using the specified line ending. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final char DIR_SEPARATOR_UNIX
public static final char DIR_SEPARATOR_WINDOWS
public static final char DIR_SEPARATOR
public static final String LINE_SEPARATOR_UNIX
public static final String LINE_SEPARATOR_WINDOWS
public static final String LINE_SEPARATOR
Constructor Detail |
---|
public IOUtils()
Method Detail |
---|
public static void closeQuietly(Reader input)
Reader
.
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); }
input
- the Reader to close, may be null or already closedpublic static void closeQuietly(Writer output)
Writer
.
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); }
output
- the Writer to close, may be null or already closedpublic static void closeQuietly(InputStream input)
InputStream
.
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); }
input
- the InputStream to close, may be null or already closedpublic static void closeQuietly(OutputStream output)
OutputStream
.
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); }
output
- the OutputStream to close, may be null or already closedpublic static void closeQuietly(Closeable closeable)
Closeable
.
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); }
closeable
- the object to close, may be null or already closedpublic static void closeQuietly(Socket sock)
Socket
.
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); }
sock
- the Socket to close, may be null or already closedpublic static void closeQuietly(Selector selector)
Selector
.
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); }
selector
- the Selector to close, may be null or already closedpublic static void closeQuietly(ServerSocket sock)
ServerSocket
.
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); }
sock
- the ServerSocket to close, may be null or already closedpublic static InputStream toBufferedInputStream(InputStream input) throws IOException
InputStream
and represent
same data as result InputStream.
This method is useful where,
toByteArray(InputStream)
, since it
avoids unnecessary allocation and copy of byte[].BufferedInputStream
.
input
- Stream to be fully buffered.
IOException
- if an I/O error occurspublic static BufferedReader toBufferedReader(Reader reader)
BufferedReader
, otherwise creates a toBufferedReader for the given
reader.
reader
- the reader to wrap or return
BufferedReader
for the given readerpublic static byte[] toByteArray(InputStream input) throws IOException
InputStream
as a byte[]
.
This method buffers the input internally, so there is no need to use a
BufferedInputStream
.
input
- the InputStream
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static byte[] toByteArray(InputStream input, long size) throws IOException
InputStream
as a byte[]
.
Use this method instead of toByteArray(InputStream)
when InputStream
size is known.
NOTE: the method checks that the length can safely be cast to an int without truncation
before using toByteArray(java.io.InputStream, int)
to read into the byte array.
(Arrays can have no more than Integer.MAX_VALUE entries anyway)
input
- the InputStream
to read fromsize
- the size of InputStream
IOException
- if an I/O error occurs or InputStream
size differ from parameter size
IllegalArgumentException
- if size is less than zero or size is greater than Integer.MAX_VALUEtoByteArray(java.io.InputStream, int)
public static byte[] toByteArray(InputStream input, int size) throws IOException
InputStream
as a byte[]
.
Use this method instead of toByteArray(InputStream)
when InputStream
size is known
input
- the InputStream
to read fromsize
- the size of InputStream
IOException
- if an I/O error occurs or InputStream
size differ from parameter size
IllegalArgumentException
- if size is less than zeropublic static byte[] toByteArray(Reader input) throws IOException
Reader
as a byte[]
using the default character encoding of the platform.
This method buffers the input internally, so there is no need to use a
BufferedReader
.
input
- the Reader
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static byte[] toByteArray(Reader input, String encoding) throws IOException
Reader
as a byte[]
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
.
input
- the Reader
to read fromencoding
- the encoding to use, null means platform default
NullPointerException
- if the input is null
IOException
- if an I/O error occurs@Deprecated public static byte[] toByteArray(String input) throws IOException
String.getBytes()
String
as a byte[]
using the default character encoding of the platform.
This is the same as String.getBytes()
.
input
- the String
to convert
NullPointerException
- if the input is null
IOException
- if an I/O error occurs (never occurs)public static char[] toCharArray(InputStream is) throws IOException
InputStream
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
.
is
- the InputStream
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static char[] toCharArray(InputStream is, String encoding) throws IOException
InputStream
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
.
is
- the InputStream
to read fromencoding
- the encoding to use, null means platform default
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static char[] toCharArray(Reader input) throws IOException
Reader
as a character array.
This method buffers the input internally, so there is no need to use a
BufferedReader
.
input
- the Reader
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static String toString(InputStream input) throws IOException
InputStream
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
.
input
- the InputStream
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static String toString(InputStream input, String encoding) throws IOException
InputStream
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
.
input
- the InputStream
to read fromencoding
- the encoding to use, null means platform default
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static String toString(Reader input) throws IOException
Reader
as a String.
This method buffers the input internally, so there is no need to use a
BufferedReader
.
input
- the Reader
to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static String toString(URI uri) throws IOException
uri
- The URI source.
IOException
- if an I/O exception occurs.public static String toString(URI uri, String encoding) throws IOException
uri
- The URI source.encoding
- The encoding name for the URL contents.
IOException
- if an I/O exception occurs.public static String toString(URL url) throws IOException
url
- The URL source.
IOException
- if an I/O exception occurs.public static String toString(URL url, String encoding) throws IOException
url
- The URL source.encoding
- The encoding name for the URL contents.
IOException
- if an I/O exception occurs.@Deprecated public static String toString(byte[] input) throws IOException
String.String(byte[])
byte[]
as a String
using the default character encoding of the platform.
input
- the byte array to read from
NullPointerException
- if the input is null
IOException
- if an I/O error occurs (never occurs)@Deprecated public static String toString(byte[] input, String encoding) throws IOException
String.String(byte[],String)
byte[]
as a String
using the specified character encoding.
Character encoding names can be found at IANA.
input
- the byte array to read fromencoding
- the encoding to use, null means platform default
NullPointerException
- if the input is null
IOException
- if an I/O error occurs (never occurs)public static List<String> readLines(InputStream input) throws IOException
InputStream
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
.
input
- the InputStream
to read from, not null
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static List<String> readLines(InputStream input, String encoding) throws IOException
InputStream
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
.
input
- the InputStream
to read from, not nullencoding
- the encoding to use, null means platform default
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static List<String> readLines(Reader input) throws IOException
Reader
as a list of Strings,
one entry per line.
This method buffers the input internally, so there is no need to use a
BufferedReader
.
input
- the Reader
to read from, not null
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static LineIterator lineIterator(Reader reader)
Reader
.
LineIterator
holds a reference to the open
Reader
specified 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 calling
LineIterator.close()
or LineIterator.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); }
reader
- the Reader
to read from, not null
IllegalArgumentException
- if the reader is nullpublic static LineIterator lineIterator(InputStream input, String encoding) throws IOException
InputStream
, using
the character encoding specified (or default encoding if null).
LineIterator
holds a reference to the open
InputStream
specified 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 calling
LineIterator.close()
or LineIterator.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); }
input
- the InputStream
to read from, not nullencoding
- the encoding to use, null means platform default
IllegalArgumentException
- if the input is null
IOException
- if an I/O error occurs, such as if the encoding is invalidpublic static InputStream toInputStream(CharSequence input)
input
- the CharSequence to convert
public static InputStream toInputStream(CharSequence input, String encoding) throws IOException
Character encoding names can be found at IANA.
input
- the CharSequence to convertencoding
- the encoding to use, null means platform default
IOException
- if the encoding is invalidpublic static InputStream toInputStream(String input)
input
- the string to convert
public static InputStream toInputStream(String input, String encoding) throws IOException
Character encoding names can be found at IANA.
input
- the string to convertencoding
- the encoding to use, null means platform default
IOException
- if the encoding is invalidpublic static void write(byte[] data, OutputStream output) throws IOException
byte[]
to an OutputStream
.
data
- the byte array to write, do not modify during output,
null ignoredoutput
- the OutputStream
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(byte[] data, Writer output) throws IOException
byte[]
to chars on a Writer
using the default character encoding of the platform.
This method uses String.String(byte[])
.
data
- the byte array to write, do not modify during output,
null ignoredoutput
- the Writer
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(byte[] data, Writer output, String encoding) throws IOException
byte[]
to chars on a Writer
using the specified character encoding.
Character encoding names can be found at IANA.
This method uses String.String(byte[], String)
.
data
- the byte array to write, do not modify during output,
null ignoredoutput
- the Writer
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(char[] data, Writer output) throws IOException
char[]
to a Writer
using the default character encoding of the platform.
data
- the char array to write, do not modify during output,
null ignoredoutput
- the Writer
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(char[] data, OutputStream output) throws IOException
char[]
to bytes on an
OutputStream
.
This method uses String.String(char[])
and
String.getBytes()
.
data
- the char array to write, do not modify during output,
null ignoredoutput
- the OutputStream
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(char[] data, OutputStream output, String encoding) throws IOException
char[]
to bytes on an
OutputStream
using the specified character encoding.
Character encoding names can be found at IANA.
This method uses String.String(char[])
and
String.getBytes(String)
.
data
- the char array to write, do not modify during output,
null ignoredoutput
- the OutputStream
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(CharSequence data, Writer output) throws IOException
CharSequence
to a Writer
.
data
- the CharSequence
to write, null ignoredoutput
- the Writer
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(CharSequence data, OutputStream output) throws IOException
CharSequence
to bytes on an
OutputStream
using the default character encoding of the
platform.
This method uses String.getBytes()
.
data
- the CharSequence
to write, null ignoredoutput
- the OutputStream
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(CharSequence data, OutputStream output, String encoding) throws IOException
CharSequence
to bytes on an
OutputStream
using the specified character encoding.
Character encoding names can be found at IANA.
This method uses String.getBytes(String)
.
data
- the CharSequence
to write, null ignoredoutput
- the OutputStream
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(String data, Writer output) throws IOException
String
to a Writer
.
data
- the String
to write, null ignoredoutput
- the Writer
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(String data, OutputStream output) throws IOException
String
to bytes on an
OutputStream
using the default character encoding of the
platform.
This method uses String.getBytes()
.
data
- the String
to write, null ignoredoutput
- the OutputStream
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void write(String data, OutputStream output, String encoding) throws IOException
String
to bytes on an
OutputStream
using the specified character encoding.
Character encoding names can be found at IANA.
This method uses String.getBytes(String)
.
data
- the String
to write, null ignoredoutput
- the OutputStream
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if output is null
IOException
- if an I/O error occurs@Deprecated public static void write(StringBuffer data, Writer output) throws IOException
StringBuffer
to a Writer
.
data
- the StringBuffer
to write, null ignoredoutput
- the Writer
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurs@Deprecated public static void write(StringBuffer data, OutputStream output) throws IOException
StringBuffer
to bytes on an
OutputStream
using the default character encoding of the
platform.
This method uses String.getBytes()
.
data
- the StringBuffer
to write, null ignoredoutput
- the OutputStream
to write to
NullPointerException
- if output is null
IOException
- if an I/O error occurs@Deprecated public static void write(StringBuffer data, OutputStream output, String encoding) throws IOException
StringBuffer
to bytes on an
OutputStream
using the specified character encoding.
Character encoding names can be found at IANA.
This method uses String.getBytes(String)
.
data
- the StringBuffer
to write, null ignoredoutput
- the OutputStream
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if output is null
IOException
- if an I/O error occurspublic static void writeLines(Collection<?> lines, String lineEnding, OutputStream output) throws IOException
toString()
value of each item in a collection to
an OutputStream
line by line, using the default character
encoding of the platform and the specified line ending.
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultoutput
- the OutputStream
to write to, not null, not closed
NullPointerException
- if the output is null
IOException
- if an I/O error occurspublic static void writeLines(Collection<?> lines, String lineEnding, OutputStream output, String encoding) throws IOException
toString()
value of each item in a collection to
an OutputStream
line by line, using the specified character
encoding and the specified line ending.
Character encoding names can be found at IANA.
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultoutput
- the OutputStream
to write to, not null, not closedencoding
- the encoding to use, null means platform default
NullPointerException
- if the output is null
IOException
- if an I/O error occurspublic static void writeLines(Collection<?> lines, String lineEnding, Writer writer) throws IOException
toString()
value of each item in a collection to
a Writer
line by line, using the specified line ending.
lines
- the lines to write, null entries produce blank lineslineEnding
- the line separator to use, null is system defaultwriter
- the Writer
to write to, not null, not closed
NullPointerException
- if the input is null
IOException
- if an I/O error occurspublic static int copy(InputStream input, OutputStream output) throws IOException
InputStream
to an
OutputStream
.
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 the copyLarge(InputStream, OutputStream)
method.
input
- the InputStream
to read fromoutput
- the OutputStream
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(InputStream input, OutputStream output) throws IOException
InputStream
to an
OutputStream
.
This method buffers the input internally, so there is no need to use a
BufferedInputStream
.
The buffer size is given by DEFAULT_BUFFER_SIZE
.
input
- the InputStream
to read fromoutput
- the OutputStream
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(InputStream input, OutputStream output, byte[] buffer) throws IOException
InputStream
to an
OutputStream
.
This method uses the provided buffer, so there is no need to use a
BufferedInputStream
.
input
- the InputStream
to read fromoutput
- the OutputStream
to write tobuffer
- the buffer to use for the copy
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(InputStream input, OutputStream output, long inputOffset, long length) throws IOException
InputStream
to an
OutputStream
, optionally skipping input bytes.
This method buffers the input internally, so there is no need to use a
BufferedInputStream
.
The buffer size is given by DEFAULT_BUFFER_SIZE
.
input
- the InputStream
to read fromoutput
- the OutputStream
to write toinputOffset
- : number of bytes to skip from input before copying
-ve values are ignoredlength
- : number of bytes to copy. -ve means all
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(InputStream input, OutputStream output, long inputOffset, long length, byte[] buffer) throws IOException
InputStream
to an
OutputStream
, optionally skipping input bytes.
This method uses the provided buffer, so there is no need to use a
BufferedInputStream
.
input
- the InputStream
to read fromoutput
- the OutputStream
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
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static void copy(InputStream input, Writer output) throws IOException
InputStream
to chars on a
Writer
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
.
input
- the InputStream
to read fromoutput
- the Writer
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static void copy(InputStream input, Writer output, String encoding) throws IOException
InputStream
to chars on a
Writer
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
.
input
- the InputStream
to read fromoutput
- the Writer
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static int copy(Reader input, Writer output) throws IOException
Reader
to a Writer
.
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 the copyLarge(Reader, Writer)
method.
input
- the Reader
to read fromoutput
- the Writer
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(Reader input, Writer output) throws IOException
Reader
to a Writer
.
This method buffers the input internally, so there is no need to use a
BufferedReader
.
The buffer size is given by DEFAULT_BUFFER_SIZE
.
input
- the Reader
to read fromoutput
- the Writer
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(Reader input, Writer output, char[] buffer) throws IOException
Reader
to a Writer
.
This method uses the provided buffer, so there is no need to use a
BufferedReader
.
input
- the Reader
to read fromoutput
- the Writer
to write tobuffer
- the buffer to be used for the copy
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(Reader input, Writer output, long inputOffset, long length) throws IOException
InputStream
to an
OutputStream
, 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
.
input
- the Reader
to read fromoutput
- the Writer
to write toinputOffset
- : number of chars to skip from input before copying
-ve values are ignoredlength
- : number of chars to copy. -ve means all
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static long copyLarge(Reader input, Writer output, long inputOffset, long length, char[] buffer) throws IOException
InputStream
to an
OutputStream
, optionally skipping input chars.
This method uses the provided buffer, so there is no need to use a
BufferedReader
.
input
- the Reader
to read fromoutput
- the Writer
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
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static void copy(Reader input, OutputStream output) throws IOException
Reader
to bytes on an
OutputStream
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
.
input
- the Reader
to read fromoutput
- the OutputStream
to write to
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static void copy(Reader input, OutputStream output, String encoding) throws IOException
Reader
to bytes on an
OutputStream
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
.
input
- the Reader
to read fromoutput
- the OutputStream
to write toencoding
- the encoding to use, null means platform default
NullPointerException
- if the input or output is null
IOException
- if an I/O error occurspublic static boolean contentEquals(InputStream input1, InputStream input2) throws IOException
This method buffers the input internally using
BufferedInputStream
if they are not already buffered.
input1
- the first streaminput2
- the second stream
NullPointerException
- if either input is null
IOException
- if an I/O error occurspublic static boolean contentEquals(Reader input1, Reader input2) throws IOException
This method buffers the input internally using
BufferedReader
if they are not already buffered.
input1
- the first readerinput2
- the second reader
NullPointerException
- if either input is null
IOException
- if an I/O error occurspublic static boolean contentEqualsIgnoreEOL(Reader input1, Reader input2) throws IOException
This method buffers the input internally using
BufferedReader
if they are not already buffered.
input1
- the first readerinput2
- the second reader
NullPointerException
- if either input is null
IOException
- if an I/O error occurspublic static long skip(InputStream input, long toSkip) throws IOException
Reader
.
input
- byte stream to skiptoSkip
- number of bytes to skip.
IOException
- if there is a problem reading the file
IllegalArgumentException
- if toSkip is negativeInputStream.skip(long)
public static long skip(Reader input, long toSkip) throws IOException
Reader
.
input
- character stream to skiptoSkip
- number of characters to skip.
IOException
- if there is a problem reading the file
IllegalArgumentException
- if toSkip is negativeReader.skip(long)
public static void skipFully(InputStream input, long toSkip) throws IOException
This allows for the possibility that InputStream.skip(long)
may
not skip as many bytes as requested (most likely because of reaching EOF).
input
- stream to skiptoSkip
- the number of bytes to skip
IOException
- if there is a problem reading the file
IllegalArgumentException
- if toSkip is negative
EOFException
- if the number of bytes skipped was incorrectInputStream.skip(long)
public static void skipFully(Reader input, long toSkip) throws IOException
This allows for the possibility that Reader.skip(long)
may
not skip as many characters as requested (most likely because of reaching EOF).
input
- stream to skiptoSkip
- the number of characters to skip
IOException
- if there is a problem reading the file
IllegalArgumentException
- if toSkip is negative
EOFException
- if the number of characters skipped was incorrectReader.skip(long)
public static int read(Reader input, char[] buffer, int offset, int length) throws IOException
Reader
.
input
- where to read input frombuffer
- destinationoffset
- inital offset into bufferlength
- length to read, must be >= 0
IOException
- if a read error occurspublic static int read(Reader input, char[] buffer) throws IOException
Reader
.
input
- where to read input frombuffer
- destination
IOException
- if a read error occurspublic static int read(InputStream input, byte[] buffer, int offset, int length) throws IOException
InputStream
.
input
- where to read input frombuffer
- destinationoffset
- inital offset into bufferlength
- length to read, must be >= 0
IOException
- if a read error occurspublic static int read(InputStream input, byte[] buffer) throws IOException
InputStream
.
input
- where to read input frombuffer
- destination
IOException
- if a read error occurspublic static void readFully(Reader input, char[] buffer, int offset, int length) throws IOException
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).
input
- where to read input frombuffer
- destinationoffset
- inital offset into bufferlength
- length to read, must be >= 0
IOException
- if there is a problem reading the file
IllegalArgumentException
- if length is negative
EOFException
- if the number of characters read was incorrectpublic static void readFully(Reader input, char[] buffer) throws IOException
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).
input
- where to read input frombuffer
- destination
IOException
- if there is a problem reading the file
IllegalArgumentException
- if length is negative
EOFException
- if the number of characters read was incorrectpublic static void readFully(InputStream input, byte[] buffer, int offset, int length) throws IOException
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).
input
- where to read input frombuffer
- destinationoffset
- inital offset into bufferlength
- length to read, must be >= 0
IOException
- if there is a problem reading the file
IllegalArgumentException
- if length is negative
EOFException
- if the number of bytes read was incorrectpublic static void readFully(InputStream input, byte[] buffer) throws IOException
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).
input
- where to read input frombuffer
- destination
IOException
- if there is a problem reading the file
IllegalArgumentException
- if length is negative
EOFException
- if the number of bytes read was incorrect
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |