public class Base64Encoder extends Object
| Modifier and Type | Field and Description |
|---|---|
static Charset |
base64CharSet |
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
decode(byte[] eData)
Dencodes a com.sun.syndication.io.impl.Base64 byte array.
|
static String |
decode(String s)
Decodes a base 64 String into a String.
|
static byte[] |
encode(byte[] dData)
Encodes a byte array into a base 64 byte array.
|
static String |
encode(String s)
Encodes a String into a base 64 String.
|
static void |
main(String[] args) |
public static final Charset base64CharSet
public static String encode(String s)
s - String to encode.public static String decode(String s) throws IllegalArgumentException
s - String to decode.IllegalArgumentException - thrown if the given byte array was not valid com.sun.syndication.io.impl.Base64 encoding.public static byte[] encode(byte[] dData)
dData - byte array to encode.public static byte[] decode(byte[] eData)
eData - byte array to decode.IllegalArgumentException - thrown if the given byte array was not valid com.sun.syndication.io.impl.Base64 encoding.Copyright © 2011–2014 Red Hat. All rights reserved.