|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.alarexgroup.m2mplf.util.Base64
public class Base64
This class codes and decodes BASE64 which is often used for email communication.
| Field Summary | |
|---|---|
protected static byte[] |
base64Chars
|
protected static byte[] |
reverseBase64Chars
|
| Method Summary | |
|---|---|
static byte[] |
decode(byte[] bytes)
Dates decoding from BASE64 |
static boolean |
decode(java.io.InputStream dataIn,
java.io.OutputStream dataOut)
Dates decoding - from BASE64 |
static byte[] |
encode(byte[] bytes)
Codes dates into BASE64 |
static byte[] |
encode(byte[] bytes,
int offset,
int length)
|
static boolean |
encode(java.io.InputStream dataIn,
java.io.OutputStream dataOut)
Codes dates into BASE64 |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected static final byte[] base64Chars
protected static final byte[] reverseBase64Chars
| Method Detail |
|---|
public static byte[] encode(byte[] bytes)
bytes - dates for coding
public static byte[] encode(byte[] bytes,
int offset,
int length)
public static boolean encode(java.io.InputStream dataIn,
java.io.OutputStream dataOut)
dataIn - dates for codingdataOut - coded dates
public static byte[] decode(byte[] bytes)
bytes - coded dates
public static boolean decode(java.io.InputStream dataIn,
java.io.OutputStream dataOut)
dataIn - coded datesdataOut - decoded dates
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||