Delphi 中将TMemoryStream转换为'String'


本文整理自网络,侵删。

 
function StreamToString(aStream: TStream): string;
var
  SS: TStringStream;
begin
  if aStream <> nil then
  begin
    SS := TStringStream.Create('');
    try
      SS.CopyFrom(aStream, 0);  // No need to position at 0 nor provide size
      Result := SS.DataString;
    finally
      SS.Free;
    end;
  end else
  begin
    Result := '';
  end;
end;



function StreamToString(const Stream: TStream; const Encoding: TEncoding): string;
var
  StringBytes: TBytes;
begin
  Stream.Position := 0;
  SetLength(StringBytes, Stream.Size);
  Stream.ReadBuffer(StringBytes, Stream.Size);
  Result := Encoding.GetString(StringBytes);
end;
它仅在Delphi XE7中经过测试。

相关阅读 >>

Delphi 如何刷新文件图标

Delphi7调用Delphi xe2 中间层注意事项

Delphi 数据集转换json对象

Delphi twebbrowser打开paypal出错

Delphi 2009 的反射单元(objauto):

干掉360保险箱vb/vc/Delphi 源码

Delphi 获取网页源代码的最简单办法

Delphi 获取网卡mac为软件注册机器码

Delphi 获取系统时间,获取系统年月日,时分秒

Delphi根据url获取缓存文件的方法

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...