public class Base64 extends Object
Constructor and Description |
---|
Base64() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(byte[] eData)
Dencodes a com.rometools.rome.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 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.rometools.rome.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.rometools.rome.io.impl.Base64 encoding.Copyright © 2018. All rights reserved.