Package com.google.common.io
Class CharSink
- java.lang.Object
- 
- com.google.common.io.CharSink
 
- 
 @GwtIncompatible public abstract class CharSink extends java.lang.Object A destination to which characters can be written, such as a text file. Unlike aWriter, aCharSinkis not an open, stateful stream that can be written to and closed. Instead, it is an immutable supplier ofWriterinstances.CharSinkprovides two kinds of methods:- Methods that return a writer: These methods should return a new, independent instance each time they are called. The caller is responsible for ensuring that the returned writer is closed.
- Convenience methods: These are implementations of common operations that are typically implemented by opening a writer using one of the methods in the first category, doing something and finally closing the writer that was opened.
 Any ByteSinkmay be viewed as aCharSinkwith a specific character encoding usingByteSink.asCharSink(Charset). Characters written to the resultingCharSinkwill written to theByteSinkas encoded bytes.- Since:
- 14.0
- Author:
- Colin Decker
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedCharSink()Constructor for use by subclasses.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.io.WriteropenBufferedStream()Opens a new bufferedWriterfor writing to this sink.abstract java.io.WriteropenStream()Opens a newWriterfor writing to this sink.voidwrite(java.lang.CharSequence charSequence)Writes the given character sequence to this sink.longwriteFrom(java.lang.Readable readable)Writes all the text from the givenReadable(such as aReader) to this sink.voidwriteLines(java.lang.Iterable<? extends java.lang.CharSequence> lines)Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator.voidwriteLines(java.lang.Iterable<? extends java.lang.CharSequence> lines, java.lang.String lineSeparator)Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.voidwriteLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines)Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator.voidwriteLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines, java.lang.String lineSeparator)Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.
 
- 
- 
- 
Constructor Detail- 
CharSinkprotected CharSink() Constructor for use by subclasses.
 
- 
 - 
Method Detail- 
openStreampublic abstract java.io.Writer openStream() throws java.io.IOException Opens a newWriterfor writing to this sink. This method returns a new, independent writer each time it is called.The caller is responsible for ensuring that the returned writer is closed. - Throws:
- java.io.IOException- if an I/O error occurs while opening the writer
 
 - 
openBufferedStreampublic java.io.Writer openBufferedStream() throws java.io.IOException Opens a new bufferedWriterfor writing to this sink. The returned stream is not required to be aBufferedWriterin order to allow implementations to simply delegate toopenStream()when the stream returned by that method does not benefit from additional buffering. This method returns a new, independent writer each time it is called.The caller is responsible for ensuring that the returned writer is closed. - Throws:
- java.io.IOException- if an I/O error occurs while opening the writer
- Since:
- 15.0 (in 14.0 with return type BufferedWriter)
 
 - 
writepublic void write(java.lang.CharSequence charSequence) throws java.io.IOException Writes the given character sequence to this sink.- Throws:
- java.io.IOException- if an I/O error while writing to this sink
 
 - 
writeLinespublic void writeLines(java.lang.Iterable<? extends java.lang.CharSequence> lines) throws java.io.IOException Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator. This method is equivalent towriteLines(lines, System.getProperty("line.separator")).- Throws:
- java.io.IOException- if an I/O error occurs while writing to this sink
 
 - 
writeLinespublic void writeLines(java.lang.Iterable<? extends java.lang.CharSequence> lines, java.lang.String lineSeparator) throws java.io.IOException Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.- Throws:
- java.io.IOException- if an I/O error occurs while writing to this sink
 
 - 
writeLinespublic void writeLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines) throws java.io.IOException Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator. This method is equivalent towriteLines(lines, System.getProperty("line.separator")).- Throws:
- java.io.IOException- if an I/O error occurs while writing to this sink
- Since:
- 22.0
 
 - 
writeLinespublic void writeLines(java.util.stream.Stream<? extends java.lang.CharSequence> lines, java.lang.String lineSeparator) throws java.io.IOException Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.- Throws:
- java.io.IOException- if an I/O error occurs while writing to this sink
- Since:
- 22.0
 
 - 
writeFrom@CanIgnoreReturnValue public long writeFrom(java.lang.Readable readable) throws java.io.IOException Writes all the text from the givenReadable(such as aReader) to this sink. Does not closereadableif it isCloseable.- Returns:
- the number of characters written
- Throws:
- java.io.IOException- if an I/O error occurs while reading from- readableor writing to this sink
 
 
- 
 
-