首页 >后端开发 >C++ >如何在不使用 XElement 的情况下从自定义 XML 序列化和反序列化字典?

如何在不使用 XElement 的情况下从自定义 XML 序列化和反序列化字典?

Barbara Streisand
Barbara Streisand原创
2025-01-04 11:56:35397浏览

How to Serialize and Deserialize a Dictionary from Custom XML Without Using XElement?

序列化和反序列化为字典来自没有 XElement 的自定义 XML

当出现空字典 时;和自定义 XML 数据,例如提供的示例:

<items>
  <item>

使用提供的键和值填充字典并将其序列化回 XML 的任务可以在不使用 XElement 的情况下实现。

反序列化

临时项目类可以是介绍:

public class item
{
    [XmlAttribute]
    public int id;
    [XmlAttribute]
    public string value;
}

可以像这样声明示例字典:

Dictionary<int, string> dict = new Dictionary<int, string>()
{
    {1,"one"}, {2,"two"}
};

要将 XML 反序列化到字典中,请创建一个 XmlSerializer 对象:

XmlSerializer serializer = new XmlSerializer(typeof(item[]), 
                                 new XmlRootAttribute() { ElementName = "items" });

反序列化过程可以是执行:

var orgDict = ((item[])serializer.Deserialize(stream))
               .ToDictionary(i => i.id, i => i.value);

序列化

要将字典序列化回 XML,请按照以下步骤操作:

serializer.Serialize(stream, 
              dict.Select(kv=>new item(){id = kv.Key,value=kv.Value}).ToArray() );

替代方法:使用 XElement(如果首选)

如果 XElement 是优选地,可以使用以下方法:

序列化

XElement xElem = new XElement(
                    "items",
                    dict.Select(x => new XElement("item",new XAttribute("id", x.Key),new XAttribute("value", x.Value)))
                 );
var xml = xElem.ToString(); //xElem.Save(...);

反序列化

XElement xElem2 = XElement.Parse(xml); //XElement.Load(...)
var newDict = xElem2.Descendants("item")
                    .ToDictionary(x => (int)x.Attribute("id"), x => (string)x.Attribute("value"));

以上是如何在不使用 XElement 的情况下从自定义 XML 序列化和反序列化字典?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn