Uses of Class org.apache.commons.codec.DecoderException

Uses in package org.apache.commons.codec

Methods which throw type org.apache.commons.codec.DecoderException

Object
Decoder.decode(Object pObject)
Decodes an "encoded" Object and returns a "decoded" Object.
String
StringDecoder.decode(String pString)
Decodes a String and returns a String.
byte[]
BinaryDecoder.decode(byte[] pArray)
Decodes a byte array and returns the results as a byte array.

Uses in package org.apache.commons.codec.net

Methods which throw type org.apache.commons.codec.DecoderException

Object
BCodec.decode(Object value)
Decodes a Base64 object into its original form.
Object
QCodec.decode(Object pObject)
Decodes a quoted-printable object into its original form.
Object
QuotedPrintableCodec.decode(Object pObject)
Decodes a quoted-printable object into its original form.
Object
URLCodec.decode(Object pObject)
Decodes a URL safe object into its original form.
String
BCodec.decode(String value)
Decodes a Base64 string into its original form.
String
QCodec.decode(String pString)
Decodes a quoted-printable string into its original form.
String
QuotedPrintableCodec.decode(String pString)
Decodes a quoted-printable string into its original form using the default string charset.
String
URLCodec.decode(String pString)
Decodes a URL safe string into its original form using the default string charset.
String
QuotedPrintableCodec.decode(String pString, String charset)
Decodes a quoted-printable string into its original form using the specified string charset.
String
URLCodec.decode(String pString, String charset)
Decodes a URL safe string into its original form using the specified encoding.
byte[]
Decodes an array of quoted-printable characters into an array of original bytes.
byte[]
URLCodec.decode(byte[] bytes)
Decodes an array of URL safe 7-bit characters into an array of original bytes.
byte[]
Decodes an array quoted-printable characters into an array of original bytes.
String
RFC1522Codec.decodeText(String text)
Applies an RFC 1522 compliant decoding scheme to the given string of text.
byte[]
URLCodec.decodeUrl(byte[] bytes)
Decodes an array of URL safe 7-bit characters into an array of original bytes.
byte[]
BCodec.doDecoding(byte[] bytes)
Decodes an array of bytes using the defined encoding scheme
byte[]
QCodec.doDecoding(byte[] bytes)
Decodes an array of bytes using the defined encoding scheme
byte[]
RFC1522Codec.doDecoding(byte[] bytes)
Decodes an array of bytes using the defined encoding scheme

Uses in package org.apache.commons.codec.binary

Methods which throw type org.apache.commons.codec.DecoderException

Object
Base64.decode(Object pObject)
Decodes an Object using the base64 algorithm.
Object
BinaryCodec.decode(Object ascii)
Decodes a byte array where each byte represents an ascii '0' or '1'.
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.
byte[]
Hex.decode(byte[] array)
Converts an array of character bytes representing hexidecimal values into an array of bytes of those same values.
byte[]
Hex.decodeHex(char[] data)
Converts an array of characters representing hexidecimal values into an array of bytes of those same values.
int
Hex.toDigit(char ch, int index)
Converts a hexadecimal character to an integer.

commons-codec version 1.3 - Copyright © 2002-2004 - Apache Software Foundation