All Packages Class Hierarchy This Package Previous Next Index
Class org.apache.soap.encoding.soapenc.Base64
java.lang.Object
|
+----org.apache.soap.encoding.soapenc.Base64
- public class Base64
- extends Object
- Author:
- TAMURA Kent <[email protected]>
-
Base64()
-
-
decode(char[], int, int)
-
-
decode(char[], int, int, OutputStream)
-
-
decode(String)
-
-
decode(String, OutputStream)
-
-
encode(byte[])
- Returns base64 representation of specified byte array.
-
encode(byte[], int, int)
- Returns base64 representation of specified byte array.
-
encode(byte[], int, int, OutputStream)
- Outputs base64 representation of the specified byte array to a byte stream.
-
encode(byte[], int, int, Writer)
- Outputs base64 representation of the specified byte array to a character stream.
Base64
public Base64()
decode
public static byte[] decode(char data[],
int off,
int len)
decode
public static byte[] decode(String data)
decode
public static void decode(char data[],
int off,
int len,
OutputStream ostream) throws IOException
decode
public static void decode(String data,
OutputStream ostream) throws IOException
encode
public static String encode(byte data[])
- Returns base64 representation of specified byte array.
encode
public static String encode(byte data[],
int off,
int len)
- Returns base64 representation of specified byte array.
encode
public static void encode(byte data[],
int off,
int len,
OutputStream ostream) throws IOException
- 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
- Outputs base64 representation of the specified byte array to a character stream.
All Packages Class Hierarchy This Package Previous Next Index