Package org.adempiere.webui.util
Class ReaderInputStream
java.lang.Object
java.io.InputStream
org.adempiere.webui.util.ReaderInputStream
- All Implemented Interfaces:
Closeable
,AutoCloseable
Adapted from
org.apache.tools.ant.util.ReaderInputStream
.-
Constructor Summary
ConstructorDescriptionReaderInputStream
(Reader reader) Construct aReaderInputStream
for the specifiedReader
.ReaderInputStream
(Reader reader, String encoding) Construct aReaderInputStream
for the specifiedReader
, with the specified encoding. -
Method Summary
Modifier and TypeMethodDescriptionint
void
close()
Closes the Reader.void
mark
(int limit) Marks the read limit of the Reader.boolean
int
read()
Reads from theReader
, returning the same value.int
read
(byte[] b, int off, int len) Reads from theReader
into a byte arrayvoid
reset()
Resets the Reader.Methods inherited from class java.io.InputStream
nullInputStream, read, readAllBytes, readNBytes, readNBytes, skip, skipNBytes, transferTo
-
Constructor Details
-
ReaderInputStream
Construct aReaderInputStream
for the specifiedReader
.- Parameters:
reader
-Reader
. Must not benull
.
-
ReaderInputStream
Construct aReaderInputStream
for the specifiedReader
, with the specified encoding.- Parameters:
reader
- non-nullReader
.encoding
- non-nullString
encoding.
-
-
Method Details
-
read
Reads from theReader
, returning the same value.- Specified by:
read
in classInputStream
- Returns:
- the value of the next character in the
Reader
. - Throws:
IOException
- if the originalReader
fails to be read
-
read
Reads from theReader
into a byte array- Overrides:
read
in classInputStream
- Parameters:
b
- the byte array to read intooff
- the offset in the byte arraylen
- the length in the byte array to fill- Returns:
- the actual number read into the byte array, -1 at the end of the stream
- Throws:
IOException
- if an error occurs
-
mark
public void mark(int limit) Marks the read limit of the Reader.- Overrides:
mark
in classInputStream
- Parameters:
limit
- the maximum limit of bytes that can be read before the mark position becomes invalid
-
available
- Overrides:
available
in classInputStream
- Returns:
- the current number of bytes ready for reading
- Throws:
IOException
- if an error occurs
-
markSupported
public boolean markSupported()- Overrides:
markSupported
in classInputStream
- Returns:
- false - mark is not supported
-
reset
Resets the Reader.- Overrides:
reset
in classInputStream
- Throws:
IOException
- if the Reader fails to be reset
-
close
Closes the Reader.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
- if the original Reader fails to be closed
-