public class QuotedPrintableDecoderStream
extends java.io.FilterInputStream
| Modifier and Type | Field and Description |
|---|---|
protected QuotedPrintableEncoder |
decoder |
| Constructor and Description |
|---|
QuotedPrintableDecoderStream(java.io.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(java.io.InputStream in)
in - The InputStream this stream is filtering.public int read()
throws java.io.IOException
read in class java.io.FilterInputStreamjava.io.IOExceptionpublic int read(byte[] buffer,
int offset,
int length)
throws java.io.IOException
read in class java.io.FilterInputStreambuffer - The target byte array the data is placed into.offset - The starting offset for the read data.length - How much data is requested.java.io.IOExceptionpublic boolean markSupported()
markSupported in class java.io.FilterInputStreampublic int available()
throws java.io.IOException
available in class java.io.FilterInputStreamjava.io.IOException