|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.openqa.jetty.util.B64Code
public class B64Code
Fast B64 Encoder/Decoder as described in RFC 1421.
Does not insert or interpret whitespace as described in RFC 1521. If you require this you must pre/post process your data.
Note that in a web context the usual case is to not want linebreaks or other white space in the encoded output.
| Constructor Summary | |
|---|---|
B64Code()
|
|
| Method Summary | |
|---|---|
static byte[] |
decode(char[] b)
Fast Base 64 decode as described in RFC 1421. |
static String |
decode(String s)
Base 64 decode as described in RFC 1421. |
static String |
decode(String s,
String charEncoding)
Base 64 decode as described in RFC 1421. |
static char[] |
encode(byte[] b)
Fast Base 64 encode as described in RFC 1421. |
static String |
encode(String s)
Base 64 encode as described in RFC 1421. |
static String |
encode(String s,
String charEncoding)
Base 64 encode as described in RFC 1421. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public B64Code()
| Method Detail |
|---|
public static String encode(String s)
Does not insert whitespace as described in RFC 1521.
s - String to encode.
public static String encode(String s,
String charEncoding)
throws UnsupportedEncodingException
Does not insert whitespace as described in RFC 1521.
s - String to encode.charEncoding - String representing the name of
the character encoding of the provided input String.
UnsupportedEncodingExceptionpublic static char[] encode(byte[] b)
Does not insert whitespace as described in RFC 1521.
Avoids creating extra copies of the input/output.
b - byte array to encode.
public static String decode(String s)
Does not attempt to cope with extra whitespace as described in RFC 1521.
s - String to decode
public static String decode(String s,
String charEncoding)
throws UnsupportedEncodingException
Does not attempt to cope with extra whitespace as described in RFC 1521.
s - String to decodecharEncoding - String representing the character encoding
used to map the decoded bytes into a String.
UnsupportedEncodingExceptionpublic static byte[] decode(char[] b)
Does not attempt to cope with extra whitespace as described in RFC 1521.
Avoids creating extra copies of the input/output.
Note this code has been flattened for performance.
b - char array to decode.
IllegalArgumentException - if the input is not a valid
B64 encoding.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||