Uses of Class java.io.Writer

Uses in package javax.xml.stream.events

Methods with parameter type java.io.Writer

void
Writes this event to the specified writer.

Uses in package javax.xml.transform.stream

Constructors with parameter type java.io.Writer

Constructor with a writer.

Methods with parameter type java.io.Writer

void
Sets the target writer.

Methods with return type java.io.Writer

Writer
Returns the target writer.

Uses in package javax.swing.text.html

Constructors with parameter type java.io.Writer

Constructs a HTMLWriter.
HTMLWriter.HTMLWriter(Writer writer, HTMLDocument doc, int pos, int len)
Constructs a HTMLWriter which outputs a Html Fragment.
Constructs a MinimalHTMLWriter.
Constructs a MinimalHTMLWriter.

Methods with parameter type java.io.Writer

void
HTMLEditorKit.write(Writer out, Document doc, int pos, int len)
Writes content from a document to the given stream in an appropriate format.

Uses in package java.nio.channels

Methods with return type java.io.Writer

Writer
Constructs a writer that encodes characters according to the named charset and writes the resulting bytes to the given channel.
Writer
Constructs a writer that encodes characters using the given encoder and writes the resulting bytes to the given channel.

Uses in package java.io

Classes derived from java.io.Writer

class
This class accumulates chars written in a buffer instead of immediately writing the data to the underlying output sink.
class
This class allows data to be written to a char array buffer and and then retrieved by an application.
class
This is a convenience class for writing to files.
class
This class is the common superclass of output character stream classes that filter the output they write.
class
This class writes characters to an output stream that is byte oriented It converts the chars that are written to bytes using an encoding layer, which is specific to a particular encoding standard.
class
This class writes its chars to a PipedReader to which it is connected.
class
This class prints Java primitive values and objects to a stream as text.
class
This class writes chars to an internal StringBuffer that can then be used to retrieve a String.

Constructors with parameter type java.io.Writer

This method initializes a new BufferedWriter instance that will write to the specified subordinate Writer and which will use a default buffer size of 8192 chars.
This method initializes a new BufferedWriter instance that will write to the specified subordinate Writer and which will use the specified buffer size
This method initializes an instance of FilterWriter to write to the specified subordinate Writer.
This method intializes a new PrintWriter object to write to the specified output sink.
PrintWriter.PrintWriter(Writer wr, boolean autoflush)
This method intializes a new PrintWriter object to write to the specified output sink.

Fields of type java.io.Writer

Writer
This is the subordinate Writer that this class redirects its method calls to.
Writer
This is the underlying Writer we are sending output to

Methods with parameter type java.io.Writer

void
This method writes all the chars that have been written to this stream from the internal buffer to the specified Writer.

Methods with return type java.io.Writer

Writer
Writer.append(char c)
Writer
Writer
Writer.append(CharSequence cs, int start, int end)

Uses in package java.sql

Methods with return type java.io.Writer

Writer
Returns a character stream that writes into this Clob, starting at the specified index.

Uses in package org.w3c.dom.ls

Methods with parameter type java.io.Writer

void
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.

Methods with return type java.io.Writer

Writer
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.

Uses in package javax.xml.stream

Methods with parameter type java.io.Writer

XMLEventWriter
Creates a new event writer.
XMLStreamWriter
Creates a new stream writer.

Uses in package javax.swing.text

Constructors with parameter type java.io.Writer

Create a new AbstractWriter with the indicated Writer and Document.
AbstractWriter.AbstractWriter(Writer writer, Document doc, int pos, int len)
Create a new AbstractWriter with the indicated Writer and Document.
Create a new AbstractWriter with the indicated Writer and Element.
AbstractWriter.AbstractWriter(Writer writer, Element elt, int pos, int len)
Create a new AbstractWriter with the indicated Writer and Element.

Methods with parameter type java.io.Writer

void
Write the content of this component to the given stream.
void
DefaultEditorKit.write(Writer out, Document document, int offset, int len)
Writes the Document (or a fragment of the Document) to a Writer in the supported content type format.
void
EditorKit.write(Writer out, Document doc, int pos, int len)

Methods with return type java.io.Writer

Writer
Return the Writer to which we are writing.