java.lang.Object | +--java.io.Reader | +--java.io.InputStreamReader
Safe: An InputStreamReader is a bridge from byte streams to character streams: It
reads bytes and decodes them into characters using a specified . The charset that it uses
may be specified by name or may be given explicitly, or the platform's
default charset may be accepted.
charset
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:
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
BufferedReader,
InputStream,
java.nio.charset.CharsetInputStreamReader(InputStream in)
InputStreamReader(InputStream in,
java.nio.charset.Charset cs)
InputStreamReader(InputStream in,
java.nio.charset.CharsetDecoder dec)
InputStreamReader(InputStream in,
String charsetName)
private final sun.nio.cs.StreamDecoder sd
public InputStreamReader(InputStream in)
in - An InputStreampublic InputStreamReader(InputStream in, String charsetName) throws UnsupportedEncodingException
in - An InputStreamcharsetName - The name of a supported
charsetpublic InputStreamReader(InputStream in, java.nio.charset.Charset cs)
in - An InputStreamcs - A charsetpublic InputStreamReader(InputStream in, java.nio.charset.CharsetDecoder dec)
in - An InputStreamdec - A charset decoderpublic String getEncoding()
If the encoding has an historical name then that name is returned; otherwise the encoding's canonical name is returned.
If this instance was created with the InputStreamReader(InputStream, String) constructor then the returned
name, being unique for the encoding, may differ from the name passed to
the constructor. This method may return null if the stream
has been closed.
null if the stream has been closedjava.nio.charset.Charsetpublic int read() throws IOException
IOExceptionpublic int read(char[] cbuf, int offset, int length) throws IOException
cbuf - Destination bufferoffset - Offset at which to start storing characterslength - Maximum number of characters to read
IOExceptionpublic boolean ready() throws IOException
IOExceptionpublic void close() throws IOException