Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Class
java.io.Writer
Packages that use Writer
Provides for system input and output through data streams, serialization and the file system.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Provides classes and interfaces that deal with editable and noneditable text components.
Uses of Writer in java.io
Subclasses of Writer in java.io
class
Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.
class
This class implements a character buffer that can be used as an Writer.
class
Writes text to character files using a default buffer size.
abstract class
Abstract class for writing filtered character streams.
class
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specified charset.
class
Piped character-output streams.
class
Prints formatted representations of objects to a text-output stream.
class
A character stream that collects its output in a string buffer, which can then be used to construct a string.
Fields in java.io declared as Writer
protected Writer
FilterWriter.out
The underlying character-output stream.
protected Writer
PrintWriter.out
The underlying character-output stream of this PrintWriter.
Methods in java.io that return Writer
OutputStreamWriter.append(CharSequence csq)
Appends the specified character sequence to this writer.
OutputStreamWriter.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
Writer.append(char c)
Appends the specified character to this writer.
Writer.append(CharSequence csq)
Appends the specified character sequence to this writer.
Writer.append(CharSequence csq, int start, int end)
Appends a subsequence of the specified character sequence to this writer.
static Writer
Writer.nullWriter()
Returns a new Writer which discards all characters.
Methods in java.io with parameters of type Writer
void
CharArrayWriter.writeTo(Writer out)
Writes the contents of the buffer to another character stream.
long
Reader.transferTo(Writer out)
Reads all characters from this reader and writes the characters to the given writer in the order that they are read.
Constructors in java.io with parameters of type Writer
public
Creates a buffered character-output stream that uses a default-sized output buffer.
public
BufferedWriter(Writer out, int sz)
Creates a new buffered character-output stream that uses an output buffer of the given size.
protected
Create a new filtered writer.
public
Creates a new PrintWriter, without automatic line flushing.
public
PrintWriter(Writer out, boolean autoFlush)
Creates a new PrintWriter.
Uses of Writer in java.util
Methods in java.util with parameters of type Writer
void
Properties.store(Writer writer, String comments)
Writes this property list (key and element pairs) in this Properties table to the output character stream in a format suitable for using the load(Reader) method.
Methods in javax.swing.text with parameters of type Writer
void
JTextComponent.write(Writer out)
Stores the contents of the model into the given stream.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz