首頁 >後端開發 >C++ >如何在不使用 XElement 的情況下從自訂 XML 序列化和反序列化字典?

如何在不使用 XElement 的情況下從自訂 XML 序列化和反序列化字典?

Barbara Streisand
Barbara Streisand原創
2025-01-04 11:56:35393瀏覽

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"}
};

可以像這樣聲明範例字典:

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

要將XML 反序列化到字典中,請建立一個XmlSerializer物件:

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

反序列化過程可以是執行:

序列化

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

要將字典序列化回XML,請依照以下步驟操作:

替代方法:使用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