Delphi DeHL 在新类中反序列化 XML 文件?

发布于 2024-09-25 17:41:43 字数 162 浏览 5 评论 0原文

我使用 DeHL 在 Delphi 中序列化 XML 和类,如果向我的类添加属性并尝试反序列化我的 XML 文件。我遇到此错误:“反序列化 « \TApp\FObject\test » 失败。序列化程序报告它丢失或当前已读取其他实体!'。

我很清楚这个问题,但是有没有办法放置默认值而不是错误?

I use DeHL to serilize XML and class in Delphi and if add property to my class and try to deserialize my XML file. I have this error : ‘Deserializing « \TApp\FObject\test » failed. Serializer reported it’s missing or other entity is currently read!’.

I understand quite well this problem but is there a way to put default value instead of error ?

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

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

发布评论

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

评论(1

一百个冬季 2024-10-02 17:41:43

亚历克斯回答我:

你应该能够——通过注释
带有 [XmlNullable] 的“part2”字段。
这将告诉 XML 序列化器
将“part2”字段设置为 NIL,如果
没有 XML 节点。

请注意,虽然这是可能的
不推荐。反序列化内容
应该被序列化回
原始类型否则“坏事”
可能会发生。

我很久以前在他的网站上问过这个问题,但我找不到在哪里问这个问题:http://alex.ciobanu.org/?p=285#comments

Alex answer me this :

You should be able to — by annotating
the “part2″ field with [XmlNullable].
This will tell the XML serializer to
set the “part2″ field to NIL if it
does not have an XML node.

Note that while this is possible it’s
not recommended. Deserialized content
should be serialized back to the
original types otherwise “bad things”
may happen.

I ask this question a long time ago on his site but I was not able to find where I ask this question : http://alex.ciobanu.org/?p=285#comments

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