• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

什么是Delphi对象树序列化到XML的好方法 - 使用RTTI而不是自定义代码

用户头像
it1352
帮助1

问题说明

将Delphi对象树序列化为XML的好方法是使用RTTI而不是自定义代码?

What's a good way to serialize a Delphi object tree to XML--using RTTI and not custom code?

我本来希望发现这个功能已经是内置到Delphi中,但似乎并不是这样。

I would have loved to find that this feature is already built into Delp but it doesn't seem to be.

我发现了几个可能会执行此功能的组件(发布在下面)。你有没有使用过任何一个或其他产品?你建立了自己的?我在Delphi中缺少一些明显的东西?

I've found a few components (posted, below) that seem like they might perform this function. Have you used any of them or some other offering? Have you built your own? Am I missing something obvious, in Delphi?

正确答案

#1

您可以使用JVCL TJvAppXMLFileStorage组件来序列化TPersistent派生类。 >

You can use the JVCL TJvAppXMLFileStorage component to serialize TPersistent derived classes.

uses
  JvAppXMLStorage;

var
  Storage: TJvAppXMLFileStorage;
begin
  Storage := TJvAppXMLFileStorage.Create(nil);
  try
    Storage.WritePersistent('', MyObject);
    Storage.Xml.SaveToFile('S:\TestFiles\Test.xml');

    Storage.Xml.LoadFromFile('S:\TestFiles\Test.xml');
    Storage.ReadPersistent('', MyObject);
  finally
    Storage.Free;
  end;
end;

这篇好文章是转载于:编程之路

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 编程之路
  • 本文地址: /reply/detail/tanhcfgikb
系列文章
更多 icon
同类精品
更多 icon
继续加载