delphi 10.1 Berlin 中使用自带的 Base64 编码
Posted 思想。生活。网络
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 10.1 Berlin 中使用自带的 Base64 编码相关的知识,希望对你有一定的参考价值。
delphi 10.1 berlin版本中,有好几个 base64 编码的单元可以使用,例如 Indy, MessageDigest_5,还有 CnBase64,我现在使用自带的 System.NetEncoding。
var params: string; Digest: TBytes; Base64: TBase64Encoding; begin Base64 := TBase64Encoding.Create; params := Base64.EncodeBytesToString(Digest);//对数组进行编码 Base64.Encode(InStream, OutStream);//对内存流进行编码 Base64.Free; end;
简单。
以上是关于delphi 10.1 Berlin 中使用自带的 Base64 编码的主要内容,如果未能解决你的问题,请参考以下文章
Delphi 10.1 Berlin 与 Delphi 10 Seattle 共存
Delphi 10.1 Berlin 与 Delphi 10 Seattle 共存
如何在Delphi 10.1 Berlin中安全地访问“共享文件夹”?
BaaS with Kinvey and Delphi 10.1 Berlin
Delphi XE10.1 引用计数(Delphi XE10.1 Berlin终于增加了对接口的Weak, UnSafe的支持)