Class IOUtils
- java.lang.Object
-
- org.apache.tika.io.IOUtils
-
public class IOUtils extends java.lang.ObjectGeneral IO stream manipulation utilities.This class provides static utility methods for input/output operations.
- closeQuietly - these methods close a stream ignoring nulls and exceptions
- toXxx/read - these methods read data from a stream
- write - these methods write data to a stream
- copy - these methods copy all the data from one stream to another
- contentEquals - these methods compare the content of two streams
The byte-to-char methods and char-to-byte methods involve a conversion step. Two methods are provided in each case, one that uses the platform default encoding and the other which allows you to specify an encoding. You are encouraged to always specify an encoding because relying on the platform default can lead to unexpected results, for example when moving from development to production.
All the methods in this class that read a stream are buffered internally. This means that there is no cause to use a
BufferedInputStreamorBufferedReader. 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.
- Since:
- Apache Tika 0.4, copied (partially) from Commons IO 1.4
-
-
Field Summary
Fields Modifier and Type Field Description static java.nio.charset.CharsetUTF_8
-
Constructor Summary
Constructors Constructor Description IOUtils()Instances should NOT be constructed in standard programming.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static voidcloseQuietly(java.io.InputStream input)Unconditionally close anInputStream.static voidcloseQuietly(java.io.OutputStream output)Unconditionally close anOutputStream.static voidcloseQuietly(java.io.Reader input)Unconditionally close anReader.static voidcloseQuietly(java.io.Writer output)Unconditionally close aWriter.static voidcloseQuietly(java.nio.channels.Channel channel)Unconditionally close aChannel.static booleancontentEquals(java.io.InputStream input1, java.io.InputStream input2)Compare the contents of two Streams to determine if they are equal or not.static booleancontentEquals(java.io.Reader input1, java.io.Reader input2)Compare the contents of two Readers to determine if they are equal or not.static intcopy(java.io.InputStream input, java.io.OutputStream output)Copy bytes from anInputStreamto anOutputStream.static voidcopy(java.io.InputStream input, java.io.Writer output)Copy bytes from anInputStreamto chars on aWriterusing the default character encoding of the platform.static voidcopy(java.io.InputStream input, java.io.Writer output, java.lang.String encoding)Copy bytes from anInputStreamto chars on aWriterusing the specified character encoding.static voidcopy(java.io.Reader input, java.io.OutputStream output)Copy chars from aReaderto bytes on anOutputStreamusing the default character encoding of the platform, and calling flush.static voidcopy(java.io.Reader input, java.io.OutputStream output, java.lang.String encoding)Copy chars from aReaderto bytes on anOutputStreamusing the specified character encoding, and calling flush.static intcopy(java.io.Reader input, java.io.Writer output)Copy chars from aReaderto aWriter.static longcopyLarge(java.io.InputStream input, java.io.OutputStream output)Copy bytes from a large (over 2GB)InputStreamto anOutputStream.static longcopyLarge(java.io.Reader input, java.io.Writer output)Copy chars from a large (over 2GB)Readerto aWriter.static intread(java.io.InputStream input, byte[] buffer, int offset, int length)Reads bytes from an input stream.static java.util.List<java.lang.String>readLines(java.io.InputStream input)Get the contents of anInputStreamas a list of Strings, one entry per line, using the default character encoding of the platform.static java.util.List<java.lang.String>readLines(java.io.InputStream input, java.lang.String encoding)Get the contents of anInputStreamas a list of Strings, one entry per line, using the specified character encoding.static java.util.List<java.lang.String>readLines(java.io.Reader input)Get the contents of aReaderas a list of Strings, one entry per line.static longskip(java.io.InputStream input, long toSkip)Skips bytes from an input byte stream.static longskip(java.io.InputStream input, long toSkip, byte[] buffer)static byte[]toByteArray(java.io.InputStream input)Get the contents of anInputStreamas abyte[].static byte[]toByteArray(java.io.Reader input)Get the contents of aReaderas abyte[]using the default character encoding of the platform.static byte[]toByteArray(java.io.Reader input, java.lang.String encoding)Get the contents of aReaderas abyte[]using the specified character encoding.static byte[]toByteArray(java.lang.String input)Deprecated.UseString.getBytes()static char[]toCharArray(java.io.InputStream is)Get the contents of anInputStreamas a character array using the default character encoding of the platform.static char[]toCharArray(java.io.InputStream is, java.lang.String encoding)Get the contents of anInputStreamas a character array using the specified character encoding.static char[]toCharArray(java.io.Reader input)Get the contents of aReaderas a character array.static java.io.InputStreamtoInputStream(java.lang.CharSequence input)Convert the specified CharSequence to an input stream, encoded as bytes using the default character encoding of the platform.static java.io.InputStreamtoInputStream(java.lang.CharSequence input, java.lang.String encoding)Convert the specified CharSequence to an input stream, encoded as bytes using the specified character encoding.static java.io.InputStreamtoInputStream(java.lang.String input)Convert the specified string to an input stream, encoded as bytes using the default character encoding of the platform.static java.io.InputStreamtoInputStream(java.lang.String input, java.lang.String encoding)Convert the specified string to an input stream, encoded as bytes using the specified character encoding.static java.lang.StringtoString(byte[] input)Deprecated.UseString(byte[])static java.lang.StringtoString(byte[] input, java.lang.String encoding)Deprecated.UseString(byte[],String)static java.lang.StringtoString(java.io.InputStream input)Get the contents of anInputStreamas a String using the default character encoding of the platform.static java.lang.StringtoString(java.io.InputStream input, java.lang.String encoding)Get the contents of anInputStreamas a String using the specified character encoding.static java.lang.StringtoString(java.io.Reader input)Get the contents of aReaderas a String.static voidwrite(byte[] data, java.io.OutputStream output)Writes bytes from abyte[]to anOutputStream.static voidwrite(byte[] data, java.io.Writer output)Writes bytes from abyte[]to chars on aWriterusing the default character encoding of the platform.static voidwrite(byte[] data, java.io.Writer output, java.lang.String encoding)Writes bytes from abyte[]to chars on aWriterusing the specified character encoding.static voidwrite(char[] data, java.io.OutputStream output)Writes chars from achar[]to bytes on anOutputStream.static voidwrite(char[] data, java.io.OutputStream output, java.lang.String encoding)Writes chars from achar[]to bytes on anOutputStreamusing the specified character encoding.static voidwrite(char[] data, java.io.Writer output)Writes chars from achar[]to aWriterusing the default character encoding of the platform.static voidwrite(java.lang.CharSequence data, java.io.OutputStream output)Writes chars from aCharSequenceto bytes on anOutputStreamusing the default character encoding of the platform.static voidwrite(java.lang.CharSequence data, java.io.OutputStream output, java.lang.String encoding)Writes chars from aCharSequenceto bytes on anOutputStreamusing the specified character encoding.static voidwrite(java.lang.CharSequence data, java.io.Writer output)Writes chars from aCharSequenceto aWriter.static voidwrite(java.lang.StringBuffer data, java.io.OutputStream output)Deprecated.replaced by write(CharSequence, OutputStream)static voidwrite(java.lang.StringBuffer data, java.io.OutputStream output, java.lang.String encoding)Deprecated.replaced by write(CharSequence, OutputStream, String)static voidwrite(java.lang.StringBuffer data, java.io.Writer output)Deprecated.replaced by write(CharSequence, Writer)static voidwrite(java.lang.String data, java.io.OutputStream output)Writes chars from aStringto bytes on anOutputStreamusing the default character encoding of the platform.static voidwrite(java.lang.String data, java.io.OutputStream output, java.lang.String encoding)Writes chars from aStringto bytes on anOutputStreamusing the specified character encoding.static voidwrite(java.lang.String data, java.io.Writer output)Writes chars from aStringto aWriter.
-
-
-
Method Detail
-
closeQuietly
public static void closeQuietly(java.io.Reader input)
Unconditionally close anReader.Equivalent to
Reader.close(), except any exceptions will be ignored. This is typically used in finally blocks.- Parameters:
input- the Reader to close, may be null or already closed
-
closeQuietly
public static void closeQuietly(java.nio.channels.Channel channel)
Unconditionally close aChannel.Equivalent to
Channel.close(), except any exceptions will be ignored. This is typically used in finally blocks.- Parameters:
channel- the Channel to close, may be null or already closed
-
closeQuietly
public static void closeQuietly(java.io.Writer output)
Unconditionally close aWriter.Equivalent to
Writer.close(), except any exceptions will be ignored. This is typically used in finally blocks.- Parameters:
output- the Writer to close, may be null or already closed
-
closeQuietly
public static void closeQuietly(java.io.InputStream input)
Unconditionally close anInputStream.Equivalent to
InputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.- Parameters:
input- the InputStream to close, may be null or already closed
-
closeQuietly
public static void closeQuietly(java.io.OutputStream output)
Unconditionally close anOutputStream.Equivalent to
OutputStream.close(), except any exceptions will be ignored. This is typically used in finally blocks.- Parameters:
output- the OutputStream to close, may be null or already closed
-
toByteArray
public static byte[] toByteArray(java.io.InputStream input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs
-
toByteArray
public static byte[] toByteArray(java.io.Reader input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs
-
toByteArray
public static byte[] toByteArray(java.io.Reader input, java.lang.String encoding) throws java.io.IOExceptionGet 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 fromencoding- the encoding to use, null means platform default- Returns:
- the requested byte array
- Throws:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
toByteArray
@Deprecated public static byte[] toByteArray(java.lang.String input) throws java.io.IOExceptionDeprecated.UseString.getBytes()Get 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs (never occurs)
-
toCharArray
public static char[] toCharArray(java.io.InputStream is) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
toCharArray
public static char[] toCharArray(java.io.InputStream is, java.lang.String encoding) throws java.io.IOExceptionGet 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 fromencoding- the encoding to use, null means platform default- Returns:
- the requested character array
- Throws:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
toCharArray
public static char[] toCharArray(java.io.Reader input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
toString
public static java.lang.String toString(java.io.InputStream input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs
-
toString
public static java.lang.String toString(java.io.InputStream input, java.lang.String encoding) throws java.io.IOExceptionGet the contents of anInputStreamas a String using the specified character encoding.Character encoding names can be found at IANA.
This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromencoding- the encoding to use, null means platform default- Returns:
- the requested String
- Throws:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs
-
toString
public static java.lang.String toString(java.io.Reader input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs
-
toString
@Deprecated public static java.lang.String toString(byte[] input) throws java.io.IOExceptionDeprecated.UseString(byte[])Get 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs (never occurs)
-
toString
@Deprecated public static java.lang.String toString(byte[] input, java.lang.String encoding) throws java.io.IOExceptionDeprecated.UseString(byte[],String)Get 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 fromencoding- the encoding to use, null means platform default- Returns:
- the requested String
- Throws:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs (never occurs)
-
readLines
public static java.util.List<java.lang.String> readLines(java.io.InputStream input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
readLines
public static java.util.List<java.lang.String> readLines(java.io.InputStream input, java.lang.String encoding) throws java.io.IOExceptionGet 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 nullencoding- the encoding to use, null means platform default- Returns:
- the list of Strings, never null
- Throws:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
readLines
public static java.util.List<java.lang.String> readLines(java.io.Reader input) throws java.io.IOExceptionGet 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:
java.lang.NullPointerException- if the input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
toInputStream
public static java.io.InputStream toInputStream(java.lang.CharSequence input)
Convert 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:
- IO 2.0
-
toInputStream
public static java.io.InputStream toInputStream(java.lang.CharSequence input, java.lang.String encoding) throws java.io.IOExceptionConvert 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 convertencoding- the encoding to use, null means platform default- Returns:
- an input stream
- Throws:
java.io.IOException- if the encoding is invalid- Since:
- IO 2.0
-
toInputStream
public static java.io.InputStream toInputStream(java.lang.String input)
Convert 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:
- Commons IO 1.1
-
toInputStream
public static java.io.InputStream toInputStream(java.lang.String input, java.lang.String encoding) throws java.io.IOExceptionConvert 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 convertencoding- the encoding to use, null means platform default- Returns:
- an input stream
- Throws:
java.io.IOException- if the encoding is invalid- Since:
- Commons IO 1.1
-
write
public static void write(byte[] data, java.io.OutputStream output) throws java.io.IOExceptionWrites bytes from abyte[]to anOutputStream.- Parameters:
data- the byte array to write, do not modify during output, null ignoredoutput- theOutputStreamto write to- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(byte[] data, java.io.Writer output) throws java.io.IOExceptionWrites 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:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(byte[] data, java.io.Writer output, java.lang.String encoding) throws java.io.IOExceptionWrites 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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(char[] data, java.io.Writer output) throws java.io.IOExceptionWrites chars from achar[]to aWriterusing the default character encoding of the platform.- Parameters:
data- the char array to write, do not modify during output, null ignoredoutput- theWriterto write to- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(char[] data, java.io.OutputStream output) throws java.io.IOExceptionWrites 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:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(char[] data, java.io.OutputStream output, java.lang.String encoding) throws java.io.IOExceptionWrites 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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(java.lang.CharSequence data, java.io.Writer output) throws java.io.IOExceptionWrites chars from aCharSequenceto aWriter.- Parameters:
data- theCharSequenceto write, null ignoredoutput- theWriterto write to- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 2.0
-
write
public static void write(java.lang.CharSequence data, java.io.OutputStream output) throws java.io.IOExceptionWrites 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:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 2.0
-
write
public static void write(java.lang.CharSequence data, java.io.OutputStream output, java.lang.String encoding) throws java.io.IOExceptionWrites 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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 2.0
-
write
public static void write(java.lang.String data, java.io.Writer output) throws java.io.IOExceptionWrites chars from aStringto aWriter.- Parameters:
data- theStringto write, null ignoredoutput- theWriterto write to- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(java.lang.String data, java.io.OutputStream output) throws java.io.IOExceptionWrites 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:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
public static void write(java.lang.String data, java.io.OutputStream output, java.lang.String encoding) throws java.io.IOExceptionWrites 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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
@Deprecated public static void write(java.lang.StringBuffer data, java.io.Writer output) throws java.io.IOExceptionDeprecated.replaced by write(CharSequence, Writer)Writes chars from aStringBufferto aWriter.- Parameters:
data- theStringBufferto write, null ignoredoutput- theWriterto write to- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
@Deprecated public static void write(java.lang.StringBuffer data, java.io.OutputStream output) throws java.io.IOExceptionDeprecated.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:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
write
@Deprecated public static void write(java.lang.StringBuffer data, java.io.OutputStream output, java.lang.String encoding) throws java.io.IOExceptionDeprecated.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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
copy
public static int copy(java.io.InputStream input, java.io.OutputStream output) throws java.io.IOExceptionCopy 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
- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occursjava.lang.ArithmeticException- if the byte count is too large- Since:
- Commons IO 1.1
-
copyLarge
public static long copyLarge(java.io.InputStream input, java.io.OutputStream output) throws java.io.IOExceptionCopy bytes from a large (over 2GB)InputStreamto anOutputStream.This method buffers the input internally, so there is no need to use a
BufferedInputStream.- Parameters:
input- theInputStreamto read fromoutput- theOutputStreamto write to- Returns:
- the number of bytes copied
- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.3
-
copy
public static void copy(java.io.InputStream input, java.io.Writer output) throws java.io.IOExceptionCopy 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:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
copy
public static void copy(java.io.InputStream input, java.io.Writer output, java.lang.String encoding) throws java.io.IOExceptionCopy bytes from anInputStreamto chars on aWriterusing the specified character encoding.This method buffers the input internally, so there is no need to use a
BufferedInputStream.Character encoding names can be found at IANA.
This method uses
InputStreamReader.- Parameters:
input- theInputStreamto read fromoutput- theWriterto write toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
copy
public static int copy(java.io.Reader input, java.io.Writer output) throws java.io.IOExceptionCopy 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
- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occursjava.lang.ArithmeticException- if the character count is too large- Since:
- Commons IO 1.1
-
copyLarge
public static long copyLarge(java.io.Reader input, java.io.Writer output) throws java.io.IOExceptionCopy chars from a large (over 2GB)Readerto aWriter.This method buffers the input internally, so there is no need to use a
BufferedReader.- Parameters:
input- theReaderto read fromoutput- theWriterto write to- Returns:
- the number of characters copied
- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.3
-
copy
public static void copy(java.io.Reader input, java.io.OutputStream output) throws java.io.IOExceptionCopy 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:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
copy
public static void copy(java.io.Reader input, java.io.OutputStream output, java.lang.String encoding) throws java.io.IOExceptionCopy 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 toencoding- the encoding to use, null means platform default- Throws:
java.lang.NullPointerException- if the input or output is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
contentEquals
public static boolean contentEquals(java.io.InputStream input1, java.io.InputStream input2) throws java.io.IOExceptionCompare 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:
java.lang.NullPointerException- if either input is nulljava.io.IOException- if an I/O error occurs
-
contentEquals
public static boolean contentEquals(java.io.Reader input1, java.io.Reader input2) throws java.io.IOExceptionCompare 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:
java.lang.NullPointerException- if either input is nulljava.io.IOException- if an I/O error occurs- Since:
- Commons IO 1.1
-
read
public static int read(java.io.InputStream input, byte[] buffer, int offset, int length) throws java.io.IOExceptionReads 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:
java.io.IOException- if a read error occurs- Since:
- 2.2
-
skip
public static long skip(java.io.InputStream input, long toSkip) throws java.io.IOExceptionSkips 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:
java.io.IOException- if there is a problem reading the filejava.lang.IllegalArgumentException- if toSkip is negative- See Also:
InputStream.skip(long), IO-203 - Add skipFully() method for InputStreams
-
skip
public static long skip(java.io.InputStream input, long toSkip, byte[] buffer) throws java.io.IOException- Throws:
java.io.IOException
-
-