| Package | Description |
|---|---|
| java.io |
Provides for system input and output through data streams, serialization and the file system.
|
| java.nio.channels |
Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations.
|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| javax.lang.model.util |
Utilities to assist in the processing of program elements and types.
|
| javax.script |
The scripting API consists of interfaces and classes that define Java
TM Scripting Engines and provides a framework for their use in Java applications.
|
| javax.sql.rowset |
Standard interfaces and base classes for JDBC
RowSet implementations.
|
| javax.sql.rowset.serial |
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
|
| javax.sql.rowset.spi |
The standard classes and interfaces that a third party vendor has to use in its implementation of a synchronization provider.
|
| javax.swing.text |
Provides classes and interfaces that deal with editable and noneditable text components.
|
| javax.swing.text.html |
Provides the class
HTMLEditorKit and supporting classes for creating HTML text editors.
|
| javax.swing.text.rtf |
Provides a class (
RTFEditorKit) for creating Rich-Text-Format text editors.
|
| javax.tools |
Provides interfaces for tools which can be invoked from a program, for example, compilers.
|
| javax.xml.bind |
Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.
|
| javax.xml.bind.helpers |
JAXB Provider Use Only: Provides partial default implementations for some of the
javax.xml.bind interfaces.
|
| javax.xml.stream | |
| javax.xml.stream.events | |
| javax.xml.transform.stream |
This package implements stream- and URI- specific transformation APIs.
|
| org.w3c.dom.ls |
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedWriter
Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.
|
class |
CharArrayWriter
This class implements a character buffer that can be used as an Writer.
|
class |
FileWriter
Convenience class for writing character files.
|
class |
FilterWriter
Abstract class for writing filtered character streams.
|
class |
OutputStreamWriter
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specified
charset.
|
class |
PipedWriter
Piped character-output streams.
|
class |
PrintWriter
Prints formatted representations of objects to a text-output stream.
|
class |
StringWriter
A character stream that collects its output in a string buffer, which can then be used to construct a string.
|
| Modifier and Type | Field and Description |
|---|---|
protected Writer |
FilterWriter.out
The underlying character-output stream.
|
protected Writer |
PrintWriter.out
The underlying character-output stream of this
PrintWriter.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
Writer.append(char c)
Appends the specified character to this writer.
|
Writer |
Writer.append(CharSequence
Appends the specified character sequence to this writer.
|
Writer |
Writer.append(CharSequence
Appends a subsequence of the specified character sequence to this writer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CharArrayWriter.writeTo(Writer
Writes the contents of the buffer to another character stream.
|
| Constructor and Description | |
|---|---|
BufferedWriter(Writer
Creates a buffered character-output stream that uses a default-sized output buffer.
|
|
BufferedWriter(Writer
Creates a new buffered character-output stream that uses an output buffer of the given size.
|
|
FilterWriter(Writer
Create a new filtered writer.
|
|
PrintWriter(Writer
Creates a new PrintWriter, without automatic line flushing.
|
|
PrintWriter(Writer
Creates a new PrintWriter.
|
| Modifier and Type | Method and Description |
|---|---|
static Writer |
Channels.newWriter(WritableByteChannel
Constructs a writer that encodes characters using the given encoder and writes the resulting bytes to the given channel.
|
static Writer |
Channels.newWriter(WritableByteChannel
Constructs a writer that encodes characters according to the named charset and writes the resulting bytes to the given channel.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
SQLXML.setCharacterStream()
Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
|
Writer |
Clob.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters to the
CLOB value that this
Clob object represents, at position
pos.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Properties.store(Writer
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.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Elements.printElements(Writer
Prints a representation of the elements to the given writer in the specified order.
|
| Modifier and Type | Field and Description |
|---|---|
protected Writer |
SimpleScriptContext.errorWriter
This is the writer to be used to output errors from scripts.
|
protected Writer |
SimpleScriptContext.writer
This is the writer to be used to output from scripts.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
SimpleScriptContext.getErrorWriter()
Returns the
Writer used to display error output.
|
Writer |
ScriptContext.getErrorWriter()
Returns the
Writer used to display error output.
|
Writer |
SimpleScriptContext.getWriter()
Returns the
Writer for scripts to use when displaying output.
|
Writer |
ScriptContext.getWriter()
Returns the
Writer for scripts to use when displaying output.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SimpleScriptContext.setErrorWriter(Writer
Sets the
Writer used to display error output.
|
void |
ScriptContext.setErrorWriter(Writer
Sets the
Writer used to display error output.
|
void |
SimpleScriptContext.setWriter(Writer
Sets the
Writer for scripts to use when displaying output.
|
void |
ScriptContext.setWriter(Writer
Sets the
Writer for scripts to use when displaying output.
|
| Modifier and Type | Method and Description |
|---|---|
void |
WebRowSet.writeXml(ResultSet
Populates this
WebRowSet object with the contents of the given
ResultSet object and writes its data, properties, and metadata to the given
Writer object in XML format.
|
void |
WebRowSet.writeXml(Writer
Writes the data, properties, and metadata for this
WebRowSet object to the given
Writer object in XML format.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
SerialClob.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters to the
CLOB value that this
SerialClob object represents, at position
pos.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XmlWriter.writeXML(WebRowSet
Writes the given
WebRowSet object to the specified
java.io.Writer output stream as an XML document.
|
| Modifier and Type | Method and Description |
|---|---|
protected Writer |
AbstractWriter.getWriter()
Returns the Writer that is used to output the content.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JTextComponent.write(Writer
Stores the contents of the model into the given stream.
|
abstract void |
EditorKit.write(Writer
Writes content from a document to the given stream in a format appropriate for this kind of content handler.
|
void |
DefaultEditorKit.write(Writer
Writes content from a document to the given stream as plain text.
|
| Constructor and Description | |
|---|---|
AbstractWriter(Writer
Creates a new AbstractWriter.
|
|
AbstractWriter(Writer
Creates a new AbstractWriter.
|
|
AbstractWriter(Writer
Creates a new AbstractWriter.
|
|
AbstractWriter(Writer
Creates a new AbstractWriter.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HTMLEditorKit.write(Writer
Write content from a document to the given stream in a format appropriate for this kind of content handler.
|
| Constructor and Description | |
|---|---|
HTMLWriter(Writer
Creates a new HTMLWriter.
|
|
HTMLWriter(Writer
Creates a new HTMLWriter.
|
|
MinimalHTMLWriter(Writer
Creates a new MinimalHTMLWriter.
|
|
MinimalHTMLWriter(Writer
Creates a new MinimalHTMLWriter.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RTFEditorKit.write(Writer
Write content from a document to the given stream as plain text.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
ForwardingFileObject.openWriter()
|
Writer |
SimpleJavaFileObject.openWriter()
Wraps the result of openOutputStream in a Writer.
|
Writer |
FileObject.openWriter()
Gets a Writer for this file object.
|
| Modifier and Type | Method and Description |
|---|---|
DocumentationTool |
DocumentationTool.getTask(Writer
Creates a future for a documentation task with the given components and arguments.
|
JavaCompiler |
JavaCompiler.getTask(Writer
Creates a future for a compilation task with the given components and arguments.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Marshaller.marshal(Object
Marshal the content tree rooted at
jaxbElement into a Writer.
|
static void |
JAXB.marshal(Object
Writes a Java object tree to XML and store it to the specified location.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractMarshallerImpl.marshal(Object
|
| Modifier and Type | Method and Description |
|---|---|
abstract XMLEventWriter |
XMLOutputFactory.createXMLEventWriter(Writer
Create a new XMLEventWriter that writes to a writer
|
abstract XMLStreamWriter |
XMLOutputFactory.createXMLStreamWriter(Writer
Create a new XMLStreamWriter that writes to a writer
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLEvent.writeAsEncodedUnicode(Writer
This method will write the XMLEvent as per the XML 1.0 specification as Unicode characters.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
StreamResult.getWriter()
Get the character stream that was set with setWriter.
|
| Modifier and Type | Method and Description |
|---|---|
void |
StreamResult.setWriter(Writer
Set the writer that is to receive the result.
|
| Constructor and Description | |
|---|---|
StreamResult(Writer
Construct a StreamResult from a character stream.
|
| Modifier and Type | Method and Description |
|---|---|
Writer |
LSOutput.getCharacterStream()
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.
|
| Modifier and Type | Method and Description |
|---|---|
void |
LSOutput.setCharacterStream(Writer
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.
|