org.apache.commons.codec.BinaryDecoder |
Known Indirect Subclasses
Base64 |
Provides Base64 encoding and decoding as defined by RFC 2045. |
BinaryCodec |
Translates between byte arrays and strings of "0"s and "1"s. |
Hex |
Hex encoder and decoder. |
QuotedPrintableCodec |
Codec for the Quoted-Printable section of RFC 1521 . |
URLCodec |
Implements the 'www-form-urlencoded' encoding scheme,
also misleadingly known as URL encoding. |
|
Class Overview
Defines common decoding methods for byte array decoders.
Summary
Public Methods |
abstract
byte[]
|
decode(byte[] pArray)
Decodes a byte array and returns the results as a byte array.
|
Public Methods
public
abstract
byte[]
decode
(byte[] pArray)
Decodes a byte array and returns the results as a byte array.
Parameters
pArray
| A byte array which has been encoded with the
appropriate encoder |
Returns
- a byte array that contains decoded content
Throws
DecoderException
| A decoder exception is thrown
if a Decoder encounters a failure condition during
the decode process.
|