Example usage for Java java.io InputStreamReader fields, constructors, methods, implement or subclass
The text is from its open source code.
InputStreamReader(InputStream in) Creates an InputStreamReader that uses the default charset. | |
InputStreamReader(InputStream in, String charsetName) Creates an InputStreamReader that uses the named charset. | |
InputStreamReader(InputStream in, Charset cs) Creates an InputStreamReader that uses the given charset. | |
InputStreamReader(InputStream in, CharsetDecoder dec) Creates an InputStreamReader that uses the given charset decoder. |
void | close() |
String | getEncoding() Returns the name of the character encoding being used by this stream. |
int | read() Reads a single character. |
int | read(char cbuf[], int offset, int length) Reads characters into a portion of an array. |
int | read(java.nio.CharBuffer target) Attempts to read characters into the specified character buffer. |
boolean | ready() Tells whether this stream is ready to be read. |
long | skip(long n) Skips characters. |