Lines Matching defs:InputStreamReader
34 * An InputStreamReader is a bridge from byte streams to character streams: It
40 * <p> Each invocation of one of an InputStreamReader's read() methods may
46 * <p> For top efficiency, consider wrapping an InputStreamReader within a
51 * = new BufferedReader(new InputStreamReader(System.in));
62 public class InputStreamReader extends Reader {
67 * Creates an InputStreamReader that uses the default charset.
71 public InputStreamReader(InputStream in) {
82 * Creates an InputStreamReader that uses the named charset.
94 public InputStreamReader(InputStream in, String charsetName)
104 * Creates an InputStreamReader that uses the given charset. </p>
112 public InputStreamReader(InputStream in, Charset cs) {
120 * Creates an InputStreamReader that uses the given charset decoder. </p>
128 public InputStreamReader(InputStream in, CharsetDecoder dec) {
142 * #InputStreamReader(InputStream, String)} constructor then the returned
188 * Tells whether this stream is ready to be read. An InputStreamReader is