Class CharStreams
- java.lang.Object
-
- com.google.common.io.CharStreams
-
@GwtIncompatible public final class CharStreams extends java.lang.Object
Provides utility methods for working with character streams.All method parameters must be non-null unless documented otherwise.
Some of the methods in this class take arguments with a generic type of
Readable & Closeable. AReaderimplements both of those interfaces. Similarly forAppendable & CloseableandWriter.- Since:
- 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classCharStreams.NullWriter
-
Field Summary
Fields Modifier and Type Field Description private static intDEFAULT_BUF_SIZE
-
Constructor Summary
Constructors Modifier Constructor Description privateCharStreams()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.io.WriterasWriter(java.lang.Appendable target)Returns a Writer that sends all output to the givenAppendabletarget.static longcopy(java.lang.Readable from, java.lang.Appendable to)Copies all characters between theReadableandAppendableobjects.(package private) static longcopyReaderToBuilder(java.io.Reader from, java.lang.StringBuilder to)Copies all characters between theReaderandStringBuilderobjects.(package private) static longcopyReaderToWriter(java.io.Reader from, java.io.Writer to)Copies all characters between theReaderandWriterobjects.(package private) static java.nio.CharBuffercreateBuffer()Creates a newCharBufferfor buffering reads or writes.static longexhaust(java.lang.Readable readable)Reads and discards data from the givenReadableuntil the end of the stream is reached.static java.io.WriternullWriter()Returns aWriterthat simply discards written chars.static java.util.List<java.lang.String>readLines(java.lang.Readable r)Reads all of the lines from aReadableobject.static <T> TreadLines(java.lang.Readable readable, LineProcessor<T> processor)Streams lines from aReadableobject, stopping when the processor returnsfalseor all lines have been read and returning the result produced by the processor.static voidskipFully(java.io.Reader reader, long n)Discardsncharacters of data from the reader.static java.lang.StringtoString(java.lang.Readable r)Reads all characters from aReadableobject into aString.private static java.lang.StringBuildertoStringBuilder(java.lang.Readable r)Reads all characters from aReadableobject into a newStringBuilderinstance.
-
-
-
Field Detail
-
DEFAULT_BUF_SIZE
private static final int DEFAULT_BUF_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
createBuffer
static java.nio.CharBuffer createBuffer()
Creates a newCharBufferfor buffering reads or writes.
-
copy
public static long copy(java.lang.Readable from, java.lang.Appendable to) throws java.io.IOExceptionCopies all characters between theReadableandAppendableobjects. Does not close or flush either object.- Parameters:
from- the object to read fromto- the object to write to- Returns:
- the number of characters copied
- Throws:
java.io.IOException- if an I/O error occurs
-
copyReaderToBuilder
static long copyReaderToBuilder(java.io.Reader from, java.lang.StringBuilder to) throws java.io.IOExceptionCopies all characters between theReaderandStringBuilderobjects. Does not close or flush the reader.This is identical to
copy(Readable, Appendable)but optimized for these specific types. CharBuffer has poor performance when being written into or read out of so round tripping all the bytes through the buffer takes a long time. With these specialized types we can just use a char array.- Parameters:
from- the object to read fromto- the object to write to- Returns:
- the number of characters copied
- Throws:
java.io.IOException- if an I/O error occurs
-
copyReaderToWriter
static long copyReaderToWriter(java.io.Reader from, java.io.Writer to) throws java.io.IOExceptionCopies all characters between theReaderandWriterobjects. Does not close or flush the reader or writer.This is identical to
copy(Readable, Appendable)but optimized for these specific types. CharBuffer has poor performance when being written into or read out of so round tripping all the bytes through the buffer takes a long time. With these specialized types we can just use a char array.- Parameters:
from- the object to read fromto- the object to write to- Returns:
- the number of characters copied
- Throws:
java.io.IOException- if an I/O error occurs
-
toString
public static java.lang.String toString(java.lang.Readable r) throws java.io.IOExceptionReads all characters from aReadableobject into aString. Does not close theReadable.- Parameters:
r- the object to read from- Returns:
- a string containing all the characters
- Throws:
java.io.IOException- if an I/O error occurs
-
toStringBuilder
private static java.lang.StringBuilder toStringBuilder(java.lang.Readable r) throws java.io.IOExceptionReads all characters from aReadableobject into a newStringBuilderinstance. Does not close theReadable.- Parameters:
r- the object to read from- Returns:
- a
StringBuildercontaining all the characters - Throws:
java.io.IOException- if an I/O error occurs
-
readLines
@Beta public static java.util.List<java.lang.String> readLines(java.lang.Readable r) throws java.io.IOException
Reads all of the lines from aReadableobject. The lines do not include line-termination characters, but do include other leading and trailing whitespace.Does not close the
Readable. If reading files or resources you should use theFiles.readLines(java.io.File, java.nio.charset.Charset)andResources.readLines(java.net.URL, java.nio.charset.Charset, com.google.common.io.LineProcessor<T>)methods.- Parameters:
r- the object to read from- Returns:
- a mutable
Listcontaining all the lines - Throws:
java.io.IOException- if an I/O error occurs
-
readLines
@Beta public static <T> T readLines(java.lang.Readable readable, LineProcessor<T> processor) throws java.io.IOException
Streams lines from aReadableobject, stopping when the processor returnsfalseor all lines have been read and returning the result produced by the processor. Does not closereadable. Note that this method may not fully consume the contents ofreadableif the processor stops processing early.- Throws:
java.io.IOException- if an I/O error occurs- Since:
- 14.0
-
exhaust
@Beta public static long exhaust(java.lang.Readable readable) throws java.io.IOException
Reads and discards data from the givenReadableuntil the end of the stream is reached. Returns the total number of chars read. Does not close the stream.- Throws:
java.io.IOException- Since:
- 20.0
-
skipFully
@Beta public static void skipFully(java.io.Reader reader, long n) throws java.io.IOException
Discardsncharacters of data from the reader. This method will block until the full amount has been skipped. Does not close the reader.- Parameters:
reader- the reader to read fromn- the number of characters to skip- Throws:
java.io.EOFException- if this stream reaches the end before skipping all the charactersjava.io.IOException- if an I/O error occurs
-
nullWriter
@Beta public static java.io.Writer nullWriter()
Returns aWriterthat simply discards written chars.- Since:
- 15.0
-
asWriter
@Beta public static java.io.Writer asWriter(java.lang.Appendable target)
Returns a Writer that sends all output to the givenAppendabletarget. Closing the writer will close the target if it isCloseable, and flushing the writer will flush the target if it isFlushable.- Parameters:
target- the object to which output will be sent- Returns:
- a new Writer object, unless target is a Writer, in which case the target is returned
-
-