| java.lang.Object com.nabhinc.util.Base64
Base64 | public class Base64 (Code) | | author: TAMURA Kent <kent@trl.ibm.co.jp> |
Method Summary | |
public static byte[] | decode(char[] data, int off, int len) | public static byte[] | decode(String data) | public static void | decode(char[] data, int off, int len, OutputStream ostream) | public static void | decode(String data, OutputStream ostream) | public static String | encode(byte[] data) Returns base64 representation of specified byte array. | public static String | encode(byte[] data, int off, int len) Returns base64 representation of specified byte array. | public static void | encode(byte[] data, int off, int len, OutputStream ostream) Outputs base64 representation of the specified byte array to a byte stream. | public static void | encode(byte[] data, int off, int len, Writer writer) Outputs base64 representation of the specified byte array to a character stream. |
decode | public static byte[] decode(char[] data, int off, int len)(Code) | | |
encode | public static String encode(byte[] data)(Code) | | Returns base64 representation of specified byte array.
|
encode | public static String encode(byte[] data, int off, int len)(Code) | | Returns base64 representation of specified byte array.
|
encode | public static void encode(byte[] data, int off, int len, OutputStream ostream) throws IOException(Code) | | Outputs base64 representation of the specified byte array to a byte stream.
|
encode | public static void encode(byte[] data, int off, int len, Writer writer) throws IOException(Code) | | Outputs base64 representation of the specified byte array to a character stream.
|
|
|