加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

反序列化XML到C#

发布时间:2020-12-16 01:59:46 所属栏目:百科 来源:网络整理
导读:所以我有xml看起来像这样: todo-list id type="integer"#{id}/id name#{name}/name description#{description}/description project-id type="integer"#{project_id}/project-id milestone-id type="integer"#{milestone_id}/milestone-id position type="i
所以我有xml看起来像这样:
<todo-list>
  <id type="integer">#{id}</id>
  <name>#{name}</name>
  <description>#{description}</description>
  <project-id type="integer">#{project_id}</project-id>
  <milestone-id type="integer">#{milestone_id}</milestone-id>
  <position type="integer">#{position}</position>

  <!-- if user can see private lists -->
  <private type="boolean">#{private}</private>

  <!-- if the account supports time tracking -->
  <tracked type="boolean">#{tracked}</tracked>

  <!-- if todo-items are included in the response -->
  <todo-items type="array">
    <todo-item>
      ...
    </todo-item>
    <todo-item>
      ...
    </todo-item>
    ...
  </todo-items>
</todo-list>

我将如何使用.NET的序列化库反序列化为C#对象?

目前我使用反射和我使用命名约定在xml和我的对象之间的映射。

为每个元素创建一个类,每个元素都有一个属性,并为每个子元素创建一个List或Array对象(使用创建的对象)。然后调用System.Xml.Serialization.XmlSerializer.Deserialize的字符串,并将结果作为您的对象。使用System.Xml.Serialization属性进行调整,例如将元素映射到ToDoList类,使用XmlElement(“todo-list”)属性。

一个shocutcut是加载你的XML到Visual Studio,点击“Infer Schema”按钮,运行“xsd.exe / c schema.xsd”来生成类。 xsd.exe是在工具文件夹中。然后通过生成的代码并进行调整,例如在适当的时候将shorts更改为ints。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读