See: Description
Interface | Description |
---|---|
BinaryDecoder | Deprecated
Please use
URL.openConnection() instead. |
BinaryEncoder | Deprecated
Please use
URL.openConnection() instead. |
Decoder | Deprecated
Please use
URL.openConnection() instead. |
Encoder | Deprecated
Please use
URL.openConnection() instead. |
StringDecoder | Deprecated
Please use
URL.openConnection() instead. |
StringEncoder | Deprecated
Please use
URL.openConnection() instead. |
Class | Description |
---|---|
StringEncoderComparator | Deprecated
Please use
URL.openConnection() instead. |
Exception | Description |
---|---|
DecoderException | Deprecated
Please use
URL.openConnection() instead. |
EncoderException | Deprecated
Please use
URL.openConnection() instead. |
A small set of interfaces used by the various implementations in the sub-packages.
Definitive implementations of commonly used encoders and decoders.
Codec is currently comprised of a modest set of utilities and a simple framework for String encoding and decoding in three categories: Binary Encoders, Language Encoders, and Network Encoders.
org.apache.commons.codec.binary.Base64 | Provides Base64 content-transfer-encoding as defined in RFC 2045 | Production |
org.apache.commons.codec.binary.Hex | Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order | Production |
Codec contains a number of commonly used language and phonetic encoders
org.apache.commons.codec.language.Soundex | Implementation of the Soundex algorithm. | Production |
org.apache.commons.codec.language.Metaphone | Implementation of the Metaphone algorithm. | Production |
Codec contains network related encoders
org.apache.commons.codec.net.URLCodec | Implements the 'www-form-urlencoded' encoding scheme. | Production |