| java.lang.Object org.jvnet.staxex.Base64Encoder
Base64Encoder | class Base64Encoder (Code) | | author: Kohsuke Kawaguchi |
Method Summary | |
public static char | encode(int i) | public static byte | encodeByte(int i) | public static String | print(byte[] input, int offset, int len) | public static int | print(byte[] input, int offset, int len, char[] buf, int ptr) Encodes a byte array into a char array by doing base64 encoding. |
encode | public static char encode(int i)(Code) | | |
encodeByte | public static byte encodeByte(int i)(Code) | | |
print | public static String print(byte[] input, int offset, int len)(Code) | | |
print | public static int print(byte[] input, int offset, int len, char[] buf, int ptr)(Code) | | Encodes a byte array into a char array by doing base64 encoding.
The caller must supply a big enough buffer.
the value of ptr+((len+2)/3)*4 , which is the new offsetin the output buffer where the further bytes should be placed. |
|
|