在 Delphi 中,如何将 String 转换为 IStream,反之亦然?

发布于 2025-01-16 12:01:08 字数 361 浏览 1 评论 0原文

我想使用:

Rslt := WrapCompressedRTFStream(OleStream, 0, Uncompressed);

其中:OleStream,未压缩:IStream; RTFStringIn RTFStringOut 是字符串;

  1. 我有 RTFStringIn (作为字符串)。
  2. 将其转换为 OleStream (ISTREAM)。
  3. 运行 WrapCompressedRTFStream。
  4. 将未压缩的数据转换为 RTFStringOut。

然后将其另存为 RTF 文件。 所有这一切都无需使用 ExtendedMAPI。

i want to use :

Rslt := WrapCompressedRTFStream(OleStream, 0, Uncompressed);

where : OleStream, Uncompressed : IStream;
and RTFStringIn RTFStringOut are String;

  1. i have the RTFStringIn (As String).
  2. convert it to OleStream (ISTREAM).
  3. run WrapCompressedRTFStream.
  4. convert the Uncompressed to RTFStringOut.

and then save it as RTF file.
all that without using ExtendedMAPI.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看春风乍起 2025-01-23 12:01:08

使用 TStreamAdapter 进行转换:

...
Stream := TStringStream.Create(your_string_here);
istr := TStreamAdapter.Create(Stream, soReference) as IStream;
...

For conversion use TStreamAdapter:

...
Stream := TStringStream.Create(your_string_here);
istr := TStreamAdapter.Create(Stream, soReference) as IStream;
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文