public class QuotedPrintableDecoderStream extends FilterInputStream
Modifier and Type | Field and Description |
---|---|
protected QuotedPrintableEncoder |
decoder |
in
Constructor and Description |
---|
QuotedPrintableDecoderStream(InputStream in)
Stream constructor.
|
Modifier and Type | Method and Description |
---|---|
int |
available()
Give an estimate of how much additional data is available
from this stream.
|
boolean |
markSupported()
Indicate whether this stream supports the mark() operation.
|
int |
read()
Read a single byte from the stream.
|
int |
read(byte[] buffer,
int offset,
int length)
Read a buffer of data from the input stream.
|
protected QuotedPrintableEncoder decoder
public QuotedPrintableDecoderStream(InputStream in)
in
- The InputStream this stream is filtering.public int read() throws IOException
read
in class FilterInputStream
IOException
public int read(byte[] buffer, int offset, int length) throws IOException
read
in class FilterInputStream
buffer
- The target byte array the data is placed into.offset
- The starting offset for the read data.length
- How much data is requested.IOException
public boolean markSupported()
markSupported
in class FilterInputStream
public int available() throws IOException
available
in class FilterInputStream
IOException
Copyright © 2013. All rights reserved.