|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.noelios.restlet.util.Base64
public class Base64
Minimal but fast Base64 codec.
Constructor Summary | |
---|---|
Base64()
|
Method Summary | |
---|---|
static byte[] |
decode(java.lang.String encodedString)
Decodes a base64 string into bytes. |
static java.lang.String |
encode(byte[] bytes,
boolean newlines)
Encodes an entire byte array into a Base64 string, with optional newlines after every 76 characters. |
static java.lang.String |
encode(byte[] bytes,
int off,
int len,
boolean newlines)
Encodes specified bytes into a Base64 string, with optional newlines after every 76 characters. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Base64()
Method Detail |
---|
public static byte[] decode(java.lang.String encodedString)
encodedString
- The string to decode.
public static java.lang.String encode(byte[] bytes, boolean newlines)
bytes
- The byte array to encode.newlines
- Indicates whether or not newlines are desired.
public static java.lang.String encode(byte[] bytes, int off, int len, boolean newlines)
bytes
- The byte array to encode.off
- The starting offset.len
- The number of bytes to encode.newlines
- Indicates whether or not newlines are desired.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |