在Caché中是否有任何"内置"方法或方法对BASE64字符串进行编码/解码?
为了编码: Write $System.Encryption.Base64Encode("text")
Write $System.Encryption.Base64Encode("text")
要解码: Write $System.Encryption.Base64Decode("dGV4dA==")
Write $System.Encryption.Base64Decode("dGV4dA==")
注意:Base 64编码无法编码包含unicode(2字节)字符的字符串.如果您需要Base 64编码unicode字符串,您应该首先将字符串转换为UTF8格式,然后对其进行编码.