Uses of Class
org.apache.commons.codec.DecoderException
| Package | Description |
|---|---|
| org.apache.commons.codec |
A small set of interfaces used by
the various implementations in the sub-packages.
|
| org.apache.commons.codec.binary |
Base64, Binary, 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 Modifier and Type Method Description byte[]BinaryDecoder. decode(byte[] pArray)Decodes a byte array and returns the results as a byte array.ObjectDecoder. decode(Object pObject)Decodes an "encoded" Object and returns a "decoded" Object.StringStringDecoder. decode(String pString)Decodes a String and returns a String. -
Uses of DecoderException in org.apache.commons.codec.binary
Methods in org.apache.commons.codec.binary that throw DecoderException Modifier and Type Method Description ObjectBase64. decode(Object pObject)Decodes an Object using the base64 algorithm.ObjectBinaryCodec. decode(Object ascii)Decodes a byte array where each byte represents an ascii '0' or '1'.byte[]Hex. decode(byte[] array)Converts an array of character bytes representing hexidecimal values into an array of bytes of those same values.ObjectHex. decode(Object object)Converts a String or an array of character bytes representing hexidecimal values into an array of bytes of those same values.static byte[]Hex. decodeHex(char[] data)Converts an array of characters representing hexidecimal values into an array of bytes of those same values.protected static intHex. toDigit(char ch, int index)Converts a hexadecimal character to an integer. -
Uses of DecoderException in org.apache.commons.codec.net
Methods in org.apache.commons.codec.net that throw DecoderException Modifier and Type Method Description ObjectBCodec. decode(Object value)Decodes a Base64 object into its original form.StringBCodec. decode(String value)Decodes a Base64 string into its original form.ObjectQCodec. decode(Object pObject)Decodes a quoted-printable object into its original form.StringQCodec. decode(String pString)Decodes a quoted-printable string into its original form.byte[]QuotedPrintableCodec. decode(byte[] bytes)Decodes an array of quoted-printable characters into an array of original bytes.ObjectQuotedPrintableCodec. decode(Object pObject)Decodes a quoted-printable object into its original form.StringQuotedPrintableCodec. decode(String pString)Decodes a quoted-printable string into its original form using the default string charset.StringQuotedPrintableCodec. decode(String pString, String charset)Decodes a quoted-printable string into its original form using the specified string charset.byte[]URLCodec. decode(byte[] bytes)Decodes an array of URL safe 7-bit characters into an array of original bytes.ObjectURLCodec. decode(Object pObject)Decodes a URL safe object into its original form.StringURLCodec. decode(String pString)Decodes a URL safe string into its original form using the default string charset.StringURLCodec. decode(String pString, String charset)Decodes a URL safe string into its original form using the specified encoding.static byte[]QuotedPrintableCodec. decodeQuotedPrintable(byte[] bytes)Decodes an array quoted-printable characters into an array of original bytes.static byte[]URLCodec. decodeUrl(byte[] bytes)Decodes an array of URL safe 7-bit characters into an array of original bytes.protected byte[]BCodec. doDecoding(byte[] bytes)protected byte[]QCodec. doDecoding(byte[] bytes)