From RFC 2045, section 6.8:
The Base64 Content-Transfer-Encoding is designed to represent arbitrary sequences of octets in a form that need not be humanly readable. The encoding and decoding algorithms are simple, but the encoded data are consistently only about 33 percent larger than the unencoded data. @ibm-api
A slight spin on the standard ByteArrayInputStream. This one accepts only a Base64 encoded String in the constructor argument
which decodes into abyte[]
to be read from by other stream.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|