Package libcore.io
Class Base64
- java.lang.Object
-
- libcore.io.Base64
-
public final class Base64 extends Object
Perform encoding and decoding of Base64 byte arrays as described in http://www.ietf.org/rfc/rfc2045.txt
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte[]decode(byte[] in)static byte[]decode(byte[] in, int len)Decodes the input from position 0 (inclusive) to len (exclusive).static Stringencode(byte[] in)
-
-
-
Method Detail
-
encode
public static String encode(byte[] in)
-
decode
public static byte[] decode(byte[] in)
-
decode
public static byte[] decode(byte[] in, int len)Decodes the input from position 0 (inclusive) to len (exclusive).
-
-