Network related encoding and decoding.
See: Description
Interface Summary | |
---|---|
StringEncodings | String encodings used in this package. |
Class Summary | |
---|---|
BCodec |
Identical to the Base64 encoding defined by RFC 1521 and allows a character set to be specified. |
QCodec |
Similar to the Quoted-Printable content-transfer-encoding defined in RFC 1521 and designed to allow text containing mostly ASCII characters to be decipherable on an ASCII terminal without decoding. |
QuotedPrintableCodec |
Codec for the Quoted-Printable section of RFC 1521 . |
RFC1522Codec |
Implements methods common to all codecs defined in RFC 1522. |
URLCodec |
Implements the 'www-form-urlencoded' encoding scheme, also misleadingly known as URL encoding. For more detailed information please refer to Chapter 17.13.4 'Form content types' of the HTML 4.01 Specification This codec is meant to be a replacement for standard Java classes {@link java.net.URLEncoder} and {@link java.net.URLDecoder} on older Java platforms, as these classes in Java versions below 1.4 rely on the platform's default charset encoding. |
Network related encoding and decoding.