is new.
java.lang.Objectjava.io.Reader
java.io.InputStreamReader
public class InputStreamReader
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 platform's default charset may be accepted.
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));
| Field Summary |
|---|
| Fields inherited from class java.io. Reader |
|---|
| lock |
| Constructor Summary | |
|---|---|
InputStreamReader
(
InputStream
Creates
|
|
InputStreamReader
(
InputStream
in,
Charset
Creates
|
|
InputStreamReader
(
InputStream
in,
CharsetDecoder
Creates
|
|
InputStreamReader
(
InputStream
in,
String
Creates
|
|
| Method Summary | |
|---|---|
| void |
close
()
Closes
stream and releases any system resources associated with it.
|
| String |
getEncoding
()
Returns
|
| int |
read
()
Reads
|
| int |
read
(char[] cbuf, int offset, int length)
Reads
|
| boolean |
ready
()
Tells
|
| Methods inherited from class java.io. Reader |
|---|
| mark , markSupported , read , read , reset , skip |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait |
| Constructor Detail |
|---|
public InputStreamReader(InputStream in)
Creates
public InputStreamReader(InputStream in,
String charsetName)
throws UnsupportedEncodingException
Creates
public InputStreamReader(InputStream in,
Charset cs)
Creates
public InputStreamReader(InputStream in,
CharsetDecoder dec)
Creates
| Method Detail |
|---|
public String getEncoding()
Returns
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
will
may
return null if the stream has been closed.
public int read()
throws IOException
Reads
public int read(char[] cbuf,
int offset,
int length)
throws IOException
Reads
public boolean ready()
throws IOException
Tells
public void close()
throws IOException
Description copied from class:
Reader
Closes the stream and releases any system resources associated with it. Once the stream has been closed, further read(), ready(), mark(), reset(), or skip() invocations will throw an IOException. Closing a previously closed stream has no effect.