Package com.google.common.io
Class CharSink
- java.lang.Object
-
- com.google.common.io.CharSink
-
- All Implemented Interfaces:
OutputSupplier<Writer>
public abstract class CharSink extends Object implements OutputSupplier<Writer>
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
-
-
Constructor Summary
Constructors Constructor Description CharSink()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description WritergetOutput()Deprecated.This method is only provided for temporary compatibility with theOutputSupplierinterface and should not be called directly.WriteropenBufferedStream()Opens a new bufferedWriterfor writing to this sink.abstract WriteropenStream()Opens a newWriterfor writing to this sink.voidwrite(CharSequence charSequence)Writes the given character sequence to this sink.longwriteFrom(Readable readable)voidwriteLines(Iterable<? extends 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(Iterable<? extends CharSequence> lines, String lineSeparator)Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.
-
-
-
Method Detail
-
openStream
public abstract Writer openStream() throws IOException
Opens a newWriterfor writing to this sink. This method should return a new, independent writer each time it is called.The caller is responsible for ensuring that the returned writer is closed.
- Throws:
IOException- if an I/O error occurs in the process of opening the writer
-
getOutput
@Deprecated public final Writer getOutput() throws IOException
Deprecated.This method is only provided for temporary compatibility with theOutputSupplierinterface and should not be called directly. UseopenStream()instead.This method is a temporary method provided for easing migration from suppliers to sources and sinks.- Specified by:
getOutputin interfaceOutputSupplier<Writer>- Throws:
IOException- Since:
- 15.0
-
openBufferedStream
public Writer openBufferedStream() throws 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 should return a new, independent writer each time it is called.The caller is responsible for ensuring that the returned writer is closed.
- Throws:
IOException- if an I/O error occurs in the process of opening the writer- Since:
- 15.0 (in 14.0 with return type
BufferedWriter)
-
write
public void write(CharSequence charSequence) throws IOException
Writes the given character sequence to this sink.- Throws:
IOException- if an I/O error in the process of writing to this sink
-
writeLines
public void writeLines(Iterable<? extends CharSequence> lines) throws 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:
IOException- if an I/O error occurs in the process of writing to this sink
-
writeLines
public void writeLines(Iterable<? extends CharSequence> lines, String lineSeparator) throws IOException
Writes the given lines of text to this sink with each line (including the last) terminated with the given line separator.- Throws:
IOException- if an I/O error occurs in the process of writing to this sink
-
writeFrom
public long writeFrom(Readable readable) throws IOException
Writes all the text from the givenReadable(such as aReader) to this sink. Does not closereadableif it isCloseable.- Throws:
IOException- if an I/O error occurs in the process of reading fromreadableor writing to this sink
-
-