← 返回首页
InputStreamReader (Java SE 26 & JDK 26)
JavaScript is disabled on your browser.
Contents  
  1. Description
  2. Field Summary
  3. Constructor Summary
  4. Method Summary
  5. Constructor Details
    1. InputStreamReader(InputStream)
    2. InputStreamReader(InputStream, String)
    3. InputStreamReader(InputStream, Charset)
    4. InputStreamReader(InputStream, CharsetDecoder)
  6. Method Details
    1. getEncoding()
    2. read()
    3. read(char[], int, int)
    4. ready()
    5. close()
Hide sidebar  Show sidebar

Class InputStreamReader

java.lang.Object
java.io.Reader
java.io.InputStreamReader
All Implemented Interfaces: Closeable, AutoCloseable, Readable Direct Known Subclasses: FileReader
public class InputStreamReader extends Reader
An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes them into characters using a specified charset. The charset that it uses may be specified by name or may be given explicitly, or the default charset may be used.

Each invocation of one of an InputStreamReader's read() methods may cause one or more bytes to be read from the underlying byte-input stream. To enable the efficient conversion of bytes to characters, more bytes may be read ahead from the underlying stream than are necessary to satisfy the current read operation.

For top efficiency, consider wrapping an InputStreamReader within a BufferedReader. For example:

Copy BufferedReader in = new BufferedReader(new InputStreamReader(anInputStream));

To read from System.in, use the system property value stdin.encoding as the Charset:

Copy new InputStreamReader(System.in, System.getProperty("stdin.encoding"));

Since: 1.1 See Also:

Scripting on this page tracks web page traffic, but does not change the content in any way.