|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.axiom.util.base64.Base64Utils
public class Base64Utils
Contains utility methods to work with base64 encoded data.
| Constructor Summary | |
|---|---|
Base64Utils()
|
|
| Method Summary | |
|---|---|
static byte[] |
decode(char[] data,
int off,
int len)
|
static void |
decode(char[] data,
int off,
int len,
java.io.OutputStream ostream)
|
static byte[] |
decode(java.lang.String data)
|
static void |
decode(java.lang.String data,
java.io.OutputStream ostream)
|
static java.lang.String |
encode(byte[] data)
Returns base64 representation of specified byte array. |
static java.lang.String |
encode(byte[] data,
int off,
int len)
Returns base64 representation of specified byte array. |
static void |
encode(byte[] data,
int off,
int len,
java.io.OutputStream ostream)
Outputs base64 representation of the specified byte array to a byte stream. |
static void |
encode(byte[] data,
int off,
int len,
java.lang.StringBuffer buffer)
Outputs base64 representation of the specified byte array to the specified String Buffer |
static void |
encode(byte[] data,
int off,
int len,
java.io.Writer writer)
Outputs base64 representation of the specified byte array to a character stream. |
static java.lang.String |
encode(javax.activation.DataHandler dh)
Get a base64 representation of the content of a given DataHandler. |
static boolean |
isValidBase64Encoding(java.lang.String data)
checks input string for invalid Base64 characters |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Base64Utils()
| Method Detail |
|---|
public static java.lang.String encode(javax.activation.DataHandler dh)
throws java.io.IOException
DataHandler.
This method will try to carry out the encoding operation in the most efficient way.
dh - the data handler with the content to encode
java.io.IOException - if an I/O error occurs when reading the content of the data handler
public static byte[] decode(char[] data,
int off,
int len)
public static byte[] decode(java.lang.String data)
public static boolean isValidBase64Encoding(java.lang.String data)
data -
public static void decode(char[] data,
int off,
int len,
java.io.OutputStream ostream)
throws java.io.IOException
java.io.IOException
public static void decode(java.lang.String data,
java.io.OutputStream ostream)
throws java.io.IOException
java.io.IOExceptionpublic static java.lang.String encode(byte[] data)
public static java.lang.String encode(byte[] data,
int off,
int len)
public static void encode(byte[] data,
int off,
int len,
java.lang.StringBuffer buffer)
public static void encode(byte[] data,
int off,
int len,
java.io.OutputStream ostream)
throws java.io.IOException
java.io.IOException
public static void encode(byte[] data,
int off,
int len,
java.io.Writer writer)
throws java.io.IOException
java.io.IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||