Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何“内置”方法或方法可以在 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 字节)字符的字符串进行编码。如果需要对 unicode 字符串进行 Base 64 编码,则应先将字符串转换为 UTF8 格式,然后对其进行编码。