org.apache.commons.codec
Interface BinaryDecoder
- Decoder
- Base64, BinaryCodec, Hex, QuotedPrintableCodec, URLCodec
public interface BinaryDecoder
Defines common decoding methods for byte array decoders.
$Id: BinaryDecoder.java,v 1.10 2004/06/15 18:14:15 ggregory Exp $- Apache Software Foundation
byte[] | decode(byte[] pArray) - Decodes a byte array and returns the results as a byte array.
|
decode
public byte[] decode(byte[] pArray)
throws DecoderException
Decodes a byte array and returns the results as a byte array.
pArray
- A byte array which has been encoded with the
appropriate encoder
- a byte array that contains decoded content
DecoderException
- A decoder exception is thrown
if a Decoder encounters a failure condition during
the decode process.
commons-codec version 1.3 - Copyright © 2002-2004 - Apache Software Foundation