| Package | Description | 
|---|---|
| java.awt.datatransfer | Provides interfaces and classes for transferring data
between and within applications. | 
| 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 
JavaTM 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.print | Provides the principal classes and interfaces for the 
JavaTM Print Service API. | 
| 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 | Provides the API for server side data source access and processing from
the JavaTM programming language. | 
| javax.sql.rowset | Standard interfaces and base classes for JDBC  RowSetimplementations. | 
| 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  HTMLEditorKitand supporting classes
for creating HTML text editors. | 
| javax.swing.text.html.parser | Provides the default HTML parser, along with support classes. | 
| 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.transform.stream | This package implements stream- and URI- specific transformation APIs. | 
| org.w3c.dom.ls | |
| org.xml.sax |  This package provides the core SAX APIs. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | DataFlavor. getReaderForText(Transferable transferable)Gets a Reader for a text flavor, decoded, if necessary, for the expected
 charset (encoding). | 
| Modifier and Type | Class | Description | 
|---|---|---|
| class  | BufferedReaderReads text from a character-input stream, buffering characters so as to
 provide for the efficient reading of characters, arrays, and lines. | |
| class  | CharArrayReaderThis class implements a character buffer that can be used as a
 character-input stream. | |
| class  | FileReaderConvenience class for reading character files. | |
| class  | FilterReaderAbstract class for reading filtered character streams. | |
| class  | InputStreamReaderAn InputStreamReader is a bridge from byte streams to character streams: It
 reads bytes and decodes them into characters using a specified  charset. | |
| class  | LineNumberReaderA buffered character-input stream that keeps track of line numbers. | |
| class  | PipedReaderPiped character-input streams. | |
| class  | PushbackReaderA character-stream reader that allows characters to be pushed back into the
 stream. | |
| class  | StringReaderA character stream whose source is a string. | 
| Modifier and Type | Field | Description | 
|---|---|---|
| protected Reader | FilterReader. inThe underlying character-input stream. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | Console. reader()Retrieves the unique  Readerobject associated
 with this console. | 
| Constructor | Description | 
|---|---|
| BufferedReader(Reader in)Creates a buffering character-input stream that uses a default-sized
 input buffer. | |
| BufferedReader(Reader in,
              int sz)Creates a buffering character-input stream that uses an input buffer of
 the specified size. | |
| FilterReader(Reader in)Creates a new filtered reader. | |
| LineNumberReader(Reader in)Create a new line-numbering reader, using the default input-buffer
 size. | |
| LineNumberReader(Reader in,
                int sz)Create a new line-numbering reader, reading characters into a buffer of
 the given size. | |
| PushbackReader(Reader in)Creates a new pushback reader with a one-character pushback buffer. | |
| PushbackReader(Reader in,
              int size)Creates a new pushback reader with a pushback buffer of the given size. | |
| StreamTokenizer(Reader r)Create a tokenizer that parses the given character stream. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Reader | Channels. newReader(ReadableByteChannel ch,
         CharsetDecoder dec,
         int minBufferCap)Constructs a reader that decodes bytes from the given channel using the
 given decoder. | |
| static Reader | Channels. newReader(ReadableByteChannel ch,
         String csName)Constructs a reader that decodes bytes from the given channel according
 to the named charset. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | SQLXML. getCharacterStream()Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object. | |
| Reader | Clob. getCharacterStream()Retrieves the  CLOBvalue designated by thisClobobject as ajava.io.Readerobject (or as a stream of
 characters). | |
| Reader | CallableStatement. getCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as a
  java.io.Readerobject in the Java programming language. | |
| Reader | ResultSet. getCharacterStream(int columnIndex)Retrieves the value of the designated column in the current row
 of this  ResultSetobject as ajava.io.Readerobject. | |
| Reader | Clob. getCharacterStream(long pos,
                  long length)Returns a  Readerobject that contains a partialClobvalue, starting
 with the character specified by pos, which is length characters in length. | |
| Reader | CallableStatement. getCharacterStream(String parameterName)Retrieves the value of the designated parameter as a
  java.io.Readerobject in the Java programming language. | |
| Reader | ResultSet. getCharacterStream(String columnLabel)Retrieves the value of the designated column in the current row
 of this  ResultSetobject as ajava.io.Readerobject. | |
| Reader | CallableStatement. getNCharacterStream(int parameterIndex)Retrieves the value of the designated parameter as a
  java.io.Readerobject in the Java programming language. | |
| Reader | ResultSet. getNCharacterStream(int columnIndex)Retrieves the value of the designated column in the current row
 of this  ResultSetobject as ajava.io.Readerobject. | |
| Reader | CallableStatement. getNCharacterStream(String parameterName)Retrieves the value of the designated parameter as a
  java.io.Readerobject in the Java programming language. | |
| Reader | ResultSet. getNCharacterStream(String columnLabel)Retrieves the value of the designated column in the current row
 of this  ResultSetobject as ajava.io.Readerobject. | |
| Reader | SQLInput. readCharacterStream()Reads the next attribute in the stream and returns it as a stream of Unicode characters. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | PreparedStatement. setCharacterStream(int parameterIndex,
                  Reader reader)Sets the designated parameter to the given  Readerobject. | |
| void | PreparedStatement. setCharacterStream(int parameterIndex,
                  Reader reader,
                  int length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | PreparedStatement. setCharacterStream(int parameterIndex,
                  Reader reader,
                  long length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | CallableStatement. setCharacterStream(String parameterName,
                  Reader reader)Sets the designated parameter to the given  Readerobject. | |
| void | CallableStatement. setCharacterStream(String parameterName,
                  Reader reader,
                  int length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | CallableStatement. setCharacterStream(String parameterName,
                  Reader reader,
                  long length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | PreparedStatement. setClob(int parameterIndex,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | PreparedStatement. setClob(int parameterIndex,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setClob(String parameterName,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setClob(String parameterName,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | PreparedStatement. setNCharacterStream(int parameterIndex,
                   Reader value)Sets the designated parameter to a  Readerobject. | |
| void | PreparedStatement. setNCharacterStream(int parameterIndex,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setNCharacterStream(String parameterName,
                   Reader value)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setNCharacterStream(String parameterName,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | PreparedStatement. setNClob(int parameterIndex,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | PreparedStatement. setNClob(int parameterIndex,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setNClob(String parameterName,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | CallableStatement. setNClob(String parameterName,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | |
| void | ResultSet. updateCharacterStream(int columnIndex,
                     Reader x)Updates the designated column with a character stream value. | |
| void | ResultSet. updateCharacterStream(int columnIndex,
                     Reader x,
                     int length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateCharacterStream(int columnIndex,
                     Reader x,
                     long length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateCharacterStream(String columnLabel,
                     Reader reader)Updates the designated column with a character stream value. | |
| void | ResultSet. updateCharacterStream(String columnLabel,
                     Reader reader,
                     int length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateCharacterStream(String columnLabel,
                     Reader reader,
                     long length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateClob(int columnIndex,
          Reader reader)Updates the designated column using the given  Readerobject. | |
| void | ResultSet. updateClob(int columnIndex,
          Reader reader,
          long length)Updates the designated column using the given  Readerobject, which is the given number of characters long. | |
| void | ResultSet. updateClob(String columnLabel,
          Reader reader)Updates the designated column using the given  Readerobject. | |
| void | ResultSet. updateClob(String columnLabel,
          Reader reader,
          long length)Updates the designated column using the given  Readerobject, which is the given number of characters long. | |
| void | ResultSet. updateNCharacterStream(int columnIndex,
                      Reader x)Updates the designated column with a character stream value. | |
| void | ResultSet. updateNCharacterStream(int columnIndex,
                      Reader x,
                      long length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateNCharacterStream(String columnLabel,
                      Reader reader)Updates the designated column with a character stream value. | |
| void | ResultSet. updateNCharacterStream(String columnLabel,
                      Reader reader,
                      long length)Updates the designated column with a character stream value, which will have
 the specified number of bytes. | |
| void | ResultSet. updateNClob(int columnIndex,
           Reader reader)Updates the designated column using the given  ReaderThe data will be read from the stream
 as needed until end-of-stream is reached. | |
| void | ResultSet. updateNClob(int columnIndex,
           Reader reader,
           long length)Updates the designated column using the given  Readerobject, which is the given number of characters long. | |
| void | ResultSet. updateNClob(String columnLabel,
           Reader reader)Updates the designated column using the given  Readerobject. | |
| void | ResultSet. updateNClob(String columnLabel,
           Reader reader,
           long length)Updates the designated column using the given  Readerobject, which is the given number of characters long. | |
| void | SQLOutput. writeCharacterStream(Reader x)Writes the next attribute to the stream as a stream of Unicode characters. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | Properties. load(Reader reader)Reads a property list (key and element pairs) from the input
 character stream in a simple line-oriented format. | 
| Constructor | Description | 
|---|---|
| PropertyResourceBundle(Reader reader)Creates a property resource bundle from a  Reader. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | SimpleDoc. getReaderForText()Obtains a reader for extracting character print data from this doc. | |
| Reader | Doc. getReaderForText()Obtains a reader for extracting character print data from this doc. | 
| Modifier and Type | Field | Description | 
|---|---|---|
| protected Reader | SimpleScriptContext. readerThis is the reader to be used for input from scripts. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | SimpleScriptContext. getReader()Returns a  Readerto be used by the script to read
 input. | |
| Reader | ScriptContext. getReader()Returns a  Readerto be used by the script to read
 input. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| CompiledScript | Compilable. compile(Reader script)Compiles the script (source read from  Reader) for
 later execution. | |
| Object | AbstractScriptEngine. eval(Reader reader)eval(Reader)calls the abstracteval(Reader, ScriptContext)passing the value of thecontextfield. | |
| Object | ScriptEngine. eval(Reader reader)Same as  eval(String)except that the source of the script is
 provided as aReader | |
| Object | AbstractScriptEngine. eval(Reader reader,
    Bindings bindings)eval(Reader, Bindings)calls the abstracteval(Reader, ScriptContext)method, passing it aScriptContextwhose Reader, Writers and Bindings for scopes other thatENGINE_SCOPEare identical to those members of the protectedcontextfield. | |
| Object | ScriptEngine. eval(Reader reader,
    Bindings n)Same as  eval(String, Bindings)except that the source of the script
 is provided as aReader. | |
| Object | ScriptEngine. eval(Reader reader,
    ScriptContext context)Same as  eval(String, ScriptContext)where the source of the script
 is read from aReader. | |
| void | SimpleScriptContext. setReader(Reader reader)Sets the  Readerfor scripts to read input
 . | |
| void | ScriptContext. setReader(Reader reader)Sets the  Readerfor scripts to read input
 . | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | RowSet. setCharacterStream(int parameterIndex,
                  Reader reader)Sets the designated parameter in this  RowSetobject's command
 to the givenReaderobject. | |
| void | RowSet. setCharacterStream(int parameterIndex,
                  Reader reader,
                  int length)Sets the designated parameter in this  RowSetobject's command
 to the givenjava.io.Readervalue. | |
| void | RowSet. setCharacterStream(String parameterName,
                  Reader reader)Sets the designated parameter to the given  Readerobject. | |
| void | RowSet. setCharacterStream(String parameterName,
                  Reader reader,
                  int length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | RowSet. setClob(int parameterIndex,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setClob(int parameterIndex,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setClob(String parameterName,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setClob(String parameterName,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNCharacterStream(int parameterIndex,
                   Reader value)Sets the designated parameter in this  RowSetobject's command
 to aReaderobject. | |
| void | RowSet. setNCharacterStream(int parameterIndex,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNCharacterStream(String parameterName,
                   Reader value)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNCharacterStream(String parameterName,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNClob(int parameterIndex,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNClob(int parameterIndex,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNClob(String parameterName,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | RowSet. setNClob(String parameterName,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | 
| Modifier and Type | Field | Description | 
|---|---|---|
| protected Reader | BaseRowSet. charStreamThe  Readerobject that will be
 returned by the methodgetCharacterStream,
 which is specified in theResultSetinterface. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | WebRowSet. readXml(Reader reader)Reads a  WebRowSetobject in its XML format from the givenReaderobject. | |
| void | BaseRowSet. setCharacterStream(int parameterIndex,
                  Reader reader)Sets the designated parameter in this  RowSetobject's command
 to the givenReaderobject. | |
| void | BaseRowSet. setCharacterStream(int parameterIndex,
                  Reader reader,
                  int length)Sets the designated parameter to the given  java.io.Readerobject, which will have the specified number of characters. | |
| void | BaseRowSet. setCharacterStream(String parameterName,
                  Reader reader)Sets the designated parameter to the given  Readerobject. | |
| void | BaseRowSet. setCharacterStream(String parameterName,
                  Reader reader,
                  int length)Sets the designated parameter to the given  Readerobject, which is the given number of characters long. | |
| void | BaseRowSet. setClob(int parameterIndex,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setClob(int parameterIndex,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setClob(String parameterName,
       Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setClob(String parameterName,
       Reader reader,
       long length)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNCharacterStream(int parameterIndex,
                   Reader value)Sets the designated parameter in this  RowSetobject's command
 to aReaderobject. | |
| void | BaseRowSet. setNCharacterStream(int parameterIndex,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNCharacterStream(String parameterName,
                   Reader value)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNCharacterStream(String parameterName,
                   Reader value,
                   long length)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNClob(int parameterIndex,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNClob(int parameterIndex,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNClob(String parameterName,
        Reader reader)Sets the designated parameter to a  Readerobject. | |
| void | BaseRowSet. setNClob(String parameterName,
        Reader reader,
        long length)Sets the designated parameter to a  Readerobject. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | SerialClob. getCharacterStream()Returns this  SerialClobobject's data as a stream
 of Unicode characters. | |
| Reader | SerialClob. getCharacterStream(long pos,
                  long length)Returns a  Readerobject that contains a partialSerialClobvalue, starting
 with the character specified by pos, which is length characters in length. | |
| Reader | SQLInputImpl. readCharacterStream()Retrieves the next attribute in this  SQLInputImplobject
 as a stream of Unicode characters. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | SQLOutputImpl. writeCharacterStream(Reader x)Writes a stream of Unicode characters to this
  SQLOutputImplobject. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | XmlReader. readXML(WebRowSet caller,
       Reader reader)Reads and parses the given  WebRowSetobject from the given
 input stream in XML format. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | DefaultEditorKit. read(Reader in,
    Document doc,
    int pos)Inserts content from the given stream, which will be
 treated as plain text. | |
| abstract void | EditorKit. read(Reader in,
    Document doc,
    int pos)Inserts content from the given stream which is expected
 to be in a format appropriate for this kind of content
 handler. | |
| void | JTextComponent. read(Reader in,
    Object desc)Initializes from a stream. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | StyleSheet. loadRules(Reader in,
         URL ref)Loads a set of rules that have been specified in terms of
 CSS1 grammar. | |
| abstract void | HTMLEditorKit.Parser. parse(Reader r,
     HTMLEditorKit.ParserCallback cb,
     boolean ignoreCharSet)Parse the given stream and drive the given callback
 with the results of the parse. | |
| void | HTMLEditorKit. read(Reader in,
    Document doc,
    int pos)Inserts content from the given stream. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | Parser. parse(Reader in)Parse an HTML stream, given a DTD. | |
| void | ParserDelegator. parse(Reader r,
     HTMLEditorKit.ParserCallback cb,
     boolean ignoreCharSet) | |
| void | DocumentParser. parse(Reader in,
     HTMLEditorKit.ParserCallback callback,
     boolean ignoreCharSet) | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | RTFEditorKit. read(Reader in,
    Document doc,
    int pos)Insert content from the given stream, which will be
 treated as plain text. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | SimpleJavaFileObject. openReader(boolean ignoreEncodingErrors)Wraps the result of SimpleJavaFileObject.getCharContent(boolean) in a Reader. | |
| Reader | ForwardingFileObject. openReader(boolean ignoreEncodingErrors) | |
| Reader | FileObject. openReader(boolean ignoreEncodingErrors)Gets a reader for this object. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Object | Unmarshaller. unmarshal(Reader reader)Unmarshal XML data from the specified Reader and return the
 resulting content tree. | |
| static <T> T | JAXB. unmarshal(Reader xml,
         Class<T> type)Reads in a Java object tree from the given XML input. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Object | AbstractUnmarshallerImpl. unmarshal(Reader reader) | 
| Modifier and Type | Method | Description | 
|---|---|---|
| abstract XMLEventReader | XMLInputFactory. createXMLEventReader(Reader reader)Create a new XMLEventReader from a reader | |
| abstract XMLEventReader | XMLInputFactory. createXMLEventReader(String systemId,
                    Reader reader)Create a new XMLEventReader from a reader | |
| abstract XMLStreamReader | XMLInputFactory. createXMLStreamReader(Reader reader)Create a new XMLStreamReader from a reader | |
| abstract XMLStreamReader | XMLInputFactory. createXMLStreamReader(String systemId,
                     Reader reader)Create a new XMLStreamReader from a java.io.InputStream | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | StreamSource. getReader()Get the character stream that was set with setReader. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | StreamSource. setReader(Reader reader)Set the input to be a character reader. | 
| Constructor | Description | 
|---|---|
| StreamSource(Reader reader)Construct a StreamSource from a character reader. | |
| StreamSource(Reader reader,
            String systemId)Construct a StreamSource from a character reader. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | LSInput. getCharacterStream()An attribute of a language and binding dependent type that represents
 a stream of 16-bit units. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | LSInput. setCharacterStream(Reader characterStream)An attribute of a language and binding dependent type that represents
 a stream of 16-bit units. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| Reader | InputSource. getCharacterStream()Get the character stream for this input source. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | InputSource. setCharacterStream(Reader characterStream)Set the character stream for this input source. | 
| Constructor | Description | 
|---|---|
| InputSource(Reader characterStream)Create a new input source with a character stream. | 
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2025, Oracle and/or its affiliates.  All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.