com.ibatis.common.io
Class ReaderInputStream
java.lang.Object
java.io.InputStream
com.ibatis.common.io.ReaderInputStream
- public class ReaderInputStream
- extends java.io.InputStream
An InputStream backed by a Reader
Constructor Summary |
ReaderInputStream(java.io.Reader reader)
Constructor to supply a Reader |
ReaderInputStream(java.io.Reader reader,
java.lang.String encoding)
Constructor to supply a Reader and an encoding |
Methods inherited from class java.io.InputStream |
mark, markSupported, read, reset, skip |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
reader
protected java.io.Reader reader
byteArrayOut
protected java.io.ByteArrayOutputStream byteArrayOut
writer
protected java.io.Writer writer
chars
protected char[] chars
buffer
protected byte[] buffer
index
protected int index
length
protected int length
ReaderInputStream
public ReaderInputStream(java.io.Reader reader)
- Constructor to supply a Reader
- Parameters:
reader
- - the Reader used by the InputStream
ReaderInputStream
public ReaderInputStream(java.io.Reader reader,
java.lang.String encoding)
throws java.io.UnsupportedEncodingException
- Constructor to supply a Reader and an encoding
- Parameters:
reader
- - the Reader used by the InputStreamencoding
- - the encoding to use for the InputStream
- Throws:
java.io.UnsupportedEncodingException
- if the encoding is not supported
read
public int read()
throws java.io.IOException
- Throws:
java.io.IOException
- See Also:
InputStream.read()
fillBuffer
protected void fillBuffer()
throws java.io.IOException
- Throws:
java.io.IOException
read
public int read(byte[] data,
int off,
int len)
throws java.io.IOException
- Throws:
java.io.IOException
- See Also:
InputStream.read(byte[], int, int)
available
public int available()
throws java.io.IOException
- Throws:
java.io.IOException
- See Also:
InputStream.available()
close
public void close()
throws java.io.IOException
- Throws:
java.io.IOException
- See Also:
InputStream.close()