| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Reader | |
| 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.sql | Provides the API for accessing and processing data in a data source using the JavaTM programming language. | 
| 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. | 
| Uses of Reader in java.awt.datatransfer | 
| Methods in java.awt.datatransfer that return Reader | |
|  Reader | DataFlavor.getReaderForText(Transferable transferable)Gets a reader for an input stream, decoded for the expected charset (encoding). | 
| Uses of Reader in java.io | 
| Subclasses of Reader in java.io | |
|  class | BufferedReaderRead 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 translates them into characters according to a specified character encoding. | 
|  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. | 
| Fields in java.io declared as Reader | |
| protected  Reader | FilterReader.inThe underlying character-input stream, or null if the stream has been closed. | 
| Constructors in java.io with parameters of type Reader | |
| FilterReader(Reader in)Create a new filtered reader. | |
| PushbackReader(Reader in,
               int size)Create a new pushback reader with a pushback buffer of the given size. | |
| PushbackReader(Reader in)Create a new pushback reader with a one-character pushback buffer. | |
| BufferedReader(Reader in,
               int sz)Create a buffering character-input stream that uses an input buffer of the specified size. | |
| BufferedReader(Reader in)Create a buffering character-input stream that uses a default-sized input buffer. | |
| 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. | |
| StreamTokenizer(Reader r)Create a tokenizer that parses the given character stream. | |
| Uses of Reader in java.sql | 
| Methods in java.sql that return Reader | |
|  Reader | SQLInput.readCharacterStream()Returns the next attribute in the stream as a stream of Unicode characters. | 
|  Reader | ResultSet.getCharacterStream(int columnIndex)Gets the value of the designated column in the current row of this ResultSetobject as ajava.io.Readerobject. | 
|  Reader | ResultSet.getCharacterStream(String columnName)Gets the value of the designated column in the current row of this ResultSetobject as ajava.io.Readerobject. | 
|  Reader | Clob.getCharacterStream()Gets the CLOBvalue designated by thisClobobject as a Unicode stream. | 
| Methods in java.sql with parameters of type Reader | |
|  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 | SQLOutput.writeCharacterStream(Reader x)Writes the next attribute to the stream as a stream of Unicode characters. | 
|  void | ResultSet.updateCharacterStream(int columnIndex,
                      Reader x,
                      int length)Updates the designated column with a character stream value. | 
|  void | ResultSet.updateCharacterStream(String columnName,
                      Reader reader,
                      int length)Updates the designated column with a character stream value. | 
| Uses of Reader in javax.swing.text | 
| Methods in javax.swing.text with parameters of type Reader | |
|  void | JTextComponent.read(Reader in,
     Object desc)Initializes from a stream. | 
| 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 | DefaultEditorKit.read(Reader in,
     Document doc,
     int pos)Inserts content from the given stream, which will be treated as plain text. | 
| Uses of Reader in javax.swing.text.html | 
| Methods in javax.swing.text.html with parameters of type Reader | |
|  void | StyleSheet.loadRules(Reader in,
          URL ref)Loads a set of rules that have been specified in terms of CSS1 grammar. | 
|  void | HTMLEditorKit.read(Reader in,
     Document doc,
     int pos)Inserts content from the given stream. | 
| 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. | 
| Uses of Reader in javax.swing.text.html.parser | 
| Methods in javax.swing.text.html.parser with parameters of type Reader | |
|  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) | 
| Uses of Reader in javax.swing.text.rtf | 
| Methods in javax.swing.text.rtf with parameters of type Reader | |
|  void | RTFEditorKit.read(Reader in,
     Document doc,
     int pos)Insert content from the given stream, which will be treated as plain text. | 
| 
 | JavaTM 2 Platform Std. Ed. v1.3.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Oracle and/or its affiliates, in the US and other countries.
Copyright © 1995, 2010 Oracle and/or its affiliates.    All rights reserved.