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]>

Constructor Index

 o Base64()

Method Index

 o decode(char[], int, int)
 o decode(char[], int, int, OutputStream)
 o decode(String)
 o decode(String, OutputStream)
 o encode(byte[])
Returns base64 representation of specified byte array.
 o encode(byte[], int, int)
Returns base64 representation of specified byte array.
 o encode(byte[], int, int, OutputStream)
Outputs base64 representation of the specified byte array to a byte stream.
 o encode(byte[], int, int, Writer)
Outputs base64 representation of the specified byte array to a character stream.

Constructors

 o Base64
 public Base64()

Methods

 o decode
 public static byte[] decode(char data[],
                             int off,
                             int len)
 o decode
 public static byte[] decode(String data)
 o decode
 public static void decode(char data[],
                           int off,
                           int len,
                           OutputStream ostream) throws IOException
 o decode
 public static void decode(String data,
                           OutputStream ostream) throws IOException
 o encode
 public static String encode(byte data[])
Returns base64 representation of specified byte array.

 o encode
 public static String encode(byte data[],
                             int off,
                             int len)
Returns base64 representation of specified byte array.

 o 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.

 o 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