public class MyReaderInputStream
extends java.io.InputStream
Reader
as an InputStream
.Constructor and Description |
---|
MyReaderInputStream(java.io.Reader reader)
Construct a
ReaderInputStream for the specified Reader . |
MyReaderInputStream(java.io.Reader reader,
java.lang.String encoding)
Construct a
ReaderInputStream for the specified Reader , with the specified encoding. |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close()
Closes the Stringreader.
|
void |
mark(int limit)
Marks the read limit of the StringReader.
|
boolean |
markSupported() |
int |
read()
Reads from the
Reader , returning the same value. |
int |
read(byte[] b,
int off,
int len)
Reads from the
Reader into a byte array |
void |
reset()
Resets the StringReader.
|
public MyReaderInputStream(java.io.Reader reader)
ReaderInputStream
for the specified Reader
.reader
- Reader
. Must not be null
.public MyReaderInputStream(java.io.Reader reader, java.lang.String encoding)
ReaderInputStream
for the specified Reader
, with the specified encoding.reader
- non-null Reader
.encoding
- non-null String
encoding.public int available() throws java.io.IOException
available
in class java.io.InputStream
java.io.IOException
- if an error occurspublic void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.InputStream
java.io.IOException
- if the original StringReader fails to be closedpublic void mark(int limit)
mark
in class java.io.InputStream
limit
- the maximum limit of bytes that can be read before the mark position becomes invalidpublic boolean markSupported()
markSupported
in class java.io.InputStream
public int read() throws java.io.IOException
Reader
, returning the same value.read
in class java.io.InputStream
Reader
.java.io.IOException
- if the original Reader
fails to be readpublic int read(byte[] b, int off, int len) throws java.io.IOException
Reader
into a byte arrayread
in class java.io.InputStream
b
- the byte array to read intooff
- the offset in the byte arraylen
- the length in the byte array to filljava.io.IOException
- if an error occurspublic void reset() throws java.io.IOException
reset
in class java.io.InputStream
java.io.IOException
- if the StringReader fails to be reset