类 Base64
- java.lang.Object
-
- cn.mcres.gyhhy.MXLib.Base64
-
public class Base64 extends Object
- 作者:
- 32798
-
-
构造器概要
构造器 构造器 说明 Base64()
-
方法概要
修饰符和类型 方法 说明 static String
decode(byte[] bytes)
static String
decode(String str)
static byte[]
decodeBytes(byte[] bytes)
Add in version 0.7static byte[]
decodeBytes(String str)
Add in version 0.7static String
encode(byte[] bytes)
static String
encode(String str)
static byte[]
encodeBytes(byte[] bytes)
Add in version 0.7static byte[]
encodeBytes(String str)
Add in version 0.7
-
-
-
方法详细资料
-
encode
public static String encode(byte[] bytes)
-
decode
public static String decode(byte[] bytes)
-
encodeBytes
public static byte[] encodeBytes(String str)
Add in version 0.7
-
encodeBytes
public static byte[] encodeBytes(byte[] bytes)
Add in version 0.7
-
decodeBytes
public static byte[] decodeBytes(byte[] bytes)
Add in version 0.7
-
decodeBytes
public static byte[] decodeBytes(String str)
Add in version 0.7
-
-