public class Base64DecoderStream extends FilterInputStream
Modifier and Type | Field and Description |
---|---|
protected byte[] |
decodedChars |
protected int |
decodedCount |
protected int |
decodedIndex |
protected char[] |
encodedChars |
protected boolean |
ignoreErrors |
in
Constructor and Description |
---|
Base64DecoderStream(InputStream in) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] buffer,
int offset,
int length) |
protected boolean ignoreErrors
protected char[] encodedChars
protected byte[] decodedChars
protected int decodedCount
protected int decodedIndex
public Base64DecoderStream(InputStream in)
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
IOException
public boolean markSupported()
markSupported
in class FilterInputStream
public int available() throws IOException
available
in class FilterInputStream
IOException
Apache CXF