|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DecoderException | |
org.apache.commons.codec | The types in this package define a small set of interfaces used by the various implementations in the sub-packages. |
org.apache.commons.codec.binary | Base64 and Hexadecimal String encoding and decoding. |
org.apache.commons.codec.net | Network related encoding and decoding. |
Uses of DecoderException in org.apache.commons.codec |
Methods in org.apache.commons.codec that throw DecoderException | |
String |
StringDecoder.decode(String pString)
Decodes a String and returns a String. |
Object |
Decoder.decode(Object pObject)
Decodes an "encoded" Object and returns a "decoded" Object. |
byte[] |
BinaryDecoder.decode(byte[] pArray)
Decodes a byte array and returns the results as a byte array. |
Uses of DecoderException in org.apache.commons.codec.binary |
Methods in org.apache.commons.codec.binary that throw DecoderException | |
Object |
Base64.decode(Object pObject)
Decodes an Object using the base64 algorithm. |
static byte[] |
Hex.decodeHex(char[] data)
Converts an array of characters representing hexidecimal values into an array of bytes of those same values. |
byte[] |
Hex.decode(byte[] array)
Converts an array of character bytes representing hexidecimal values into an array of bytes of those same values. |
Object |
Hex.decode(Object object)
Converts a String or an array of character bytes representing hexidecimal values into an array of bytes of those same values. |
Uses of DecoderException in org.apache.commons.codec.net |
Methods in org.apache.commons.codec.net that throw DecoderException | |
static byte[] |
URLCodec.decodeUrl(byte[] pArray)
Decodes an array of URL safe 7-bit characters into an array of original bytes. |
byte[] |
URLCodec.decode(byte[] pArray)
Decodes an array of URL safe 7-bit characters into an array of original bytes. |
String |
URLCodec.decode(String pString,
String charset)
Decodes a URL safe string into its original form using the specified character set. |
String |
URLCodec.decode(String pString)
Decodes a URL safe string into its original form. |
Object |
URLCodec.decode(Object pObject)
Decodes a URL safe object into its original form. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |