base64

encode

参数名描述可否为空
bytes要加密的字节数组
参数名描述可否为空
string要加密的字节数组
charset编码格式,默认UTF-8

返回值类型:String

根据字节数组或字符串进行base64加密,返回String

  • 根据访问结果进行base64加密
  1. ${base64.encode(resp.html)}
  1. ${base64.encode(resp.bytes)}

encodeBytes

参数名描述可否为空
bytes要加密的字节数组
参数名描述可否为空
string要加密的字节数组
charset编码格式,默认UTF-8

返回值类型:byte[]

  • 根据字节数组或字符串进行base64加密,返回byte[]
  1. ${base64.encodeBytes(resp.html)}
  1. ${base64.encodeBytes(resp.bytes)}

decode

参数名描述可否为空
bytes/string要解密的字节数组或字符串

返回值类型:byte[]

根据字节数组或字符串进行base64解密,返回byte[]

  • 根据访问结果进行base64解密
  1. ${base64.decode(resp.html)}
  1. ${base64.decode(resp.bytes)}

decodeString

参数名描述可否为空
string要解密的字符串
参数名描述可否为空
bytes要解密的字节数组
charset编码格式,默认UTF-8

返回值类型:String

根据字节数组或字符串进行base64解密,返回String

  • 根据访问结果进行base64解密
  1. ${base64.decodeString(resp.html)}
  1. ${base64.decodeString(resp.bytes)}