public class Base64Binary
extends java.lang.Object
Constructor and Description |
---|
Base64Binary() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(java.lang.String pValue)
Converts the string
pValue into a
base64 encoded byte array. |
static java.lang.String |
encode(byte[] pValue)
Converts the base64 encoded byte array
pValue
into a string. |
static byte[] |
getClone(byte[] pValue)
Creates a clone of the byte array
pValue . |
public static byte[] getClone(byte[] pValue)
pValue
.public static byte[] decode(java.lang.String pValue) throws java.io.IOException
pValue
into a
base64 encoded byte array.java.io.IOException
public static java.lang.String encode(byte[] pValue)
pValue
into a string.