gpt4 book ai didi

delphi - Base64 到二进制 (Delphi)

转载 作者:行者123 更新时间:2023-12-03 15:15:05 26 4
gpt4 key购买 nike

我使用了您回答的 Binary to Base64 函数: Binary to Base64 (Delphi)

我成功将文件编码为base64字符串并将其写入MsSQL2008数据库,但我想问一个问题:如何使用 EncdDecd.pas 再次将此文件写入磁盘?

最佳答案

一如既往,大卫的回答很充分。尽管我无法抗拒使用最近的 Delphi 版本中的一些优点来提供稍微不同的解决方案。

procedure DecodeFile(const base64: AnsiString; const FileName: string);
var
stream: TBytesStream;
begin
stream := TBytesStream.Create(DecodeBase64(base64));
try
stream.SaveToFile(Filename);
finally
stream.Free;
end;
end;

关于delphi - Base64 到二进制 (Delphi),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8768652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com