xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
Base64.xcs
浏览该文件的文档.
1
5@Declare
6final class Base64{
14 static String encodeToString(byte [] data, bool warp);
15
25 static String encodeToString(byte [] data,int pos,int len, bool warp);
26
33 static byte[] decodeString(String text);
34};
base64类
Definition Base64.xcs:6
static byte [] decodeString(String text)
将base64串还原为数据
static String encodeToString(byte [] data, bool warp)
将数据转换为base64串
static String encodeToString(byte [] data,int pos,int len, bool warp)
将数据转换为base64串
字符串类