|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectwox.serial.EncodeBase64
public class EncodeBase64
The EncodeBase64
class provides methods to encode and decode byte arrays
to and from base64 encoding.
Constructor Summary | |
---|---|
EncodeBase64()
|
Method Summary | |
---|---|
static byte[] |
decode(byte[] source)
Very low-level access to decoding ASCII characters in the form of a byte array. |
static byte[] |
encode(byte[] source)
This method encodes an array of bytes to Base64. |
static void |
main(java.lang.String[] args)
Test method. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public EncodeBase64()
Method Detail |
---|
public static byte[] encode(byte[] source)
source
- The original array of bytes to be converted.
public static byte[] decode(byte[] source)
source
- The Base64 encoded data (array of byte)
public static void main(java.lang.String[] args)
args
- Arguments for the test method.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |