|
Class Summary |
| AsciiToNativeFilterReader |
This FilterReader class processes a sequence of characters from
a source stream containing a mixture of 7-bit ASCII data and
'back-tick U' escaped sequences representing characters which have
the possibility of being encoded in a user specified encoding
The filter relies on knowing the target encoding and makes a
determination as to whether a given supplied character in its
source character stream can be encoded in the target encoding. |
| Base64 |
This is Base64 v. |
| Base64.InputStream |
A Base64.InputStream will read data from another
java.io.InputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| Base64.OutputStream |
A Base64.OutputStream will write data to another
java.io.OutputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| Base64UrlSafe |
Wrapper to provide a type for Base64 url-safe variant Strings. |
| Encodings |
|
| NativeToAsciiFilter |
Assuming the input is to be understood as ASCII, encode bytes above 127 as unicode escapes like \\uXXXX. |
| NativeToAsciiFilterWriter |
Rework of the Sun open source code |