| |
|
| java.lang.Object org.openjx.util.Base64
Base64 | public class Base64 (Code) | | This class simply handles encoding and decoding data to and from base 64.
author: Jared Spigner |
Constructor Summary | |
public | Base64() This is the constructor for the Base64 class. |
Method Summary | |
public byte[] | decodeBase64(StringReader in) This method decodes the data in the StringReader from base 64.
Parameters: in - is a stream of data we want to decode. | public byte[] | encodeBase64(StringReader in) This method encodes the data in the StringReader from base 64.
Parameters: in - is a stream of data we want to encode. |
Base64 | public Base64()(Code) | | This is the constructor for the Base64 class. It creates a new
instance of Base64.
|
decodeBase64 | public byte[] decodeBase64(StringReader in)(Code) | | This method decodes the data in the StringReader from base 64.
Parameters: in - is a stream of data we want to decode. a byte array fo teh decoded data. |
encodeBase64 | public byte[] encodeBase64(StringReader in)(Code) | | This method encodes the data in the StringReader from base 64.
Parameters: in - is a stream of data we want to encode. a byte array fo teh encoded data. |
|
|
|