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

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

Susan Sarandon
Susan Sarandon原創
2025-01-04 06:26:40786瀏覽

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

序列化和反序列化字典來自沒有XElement 的自訂XML

考慮一個場景,其中您有一個Dictionary您需要將其序列化為自訂XML 格式並從自訂XML格式反序列化,如下所示:

<items>
  <item>

要在不使用XElement 的情況下實現此序列化和反序列化:

序列化

  1. 建立臨時專案class:
public class Item
{
    [XmlAttribute]
    public int Id;
    [XmlAttribute]
    public string Value;
}
  1. 初始化一個Dictionary 實例:
Dictionary<int, string> dict = new Dictionary<int, string>()
{
    { 1, "one" }, { 2, "two" }
};
  1. 建立一個 XmlSerializer 實例:
XmlSerializer serializer = new XmlSerializer(typeof(Item[]), new XmlRootAttribute() { ElementName = "items" });
  1. 將字典序列化為XML:
serializer.Serialize(stream, dict.Select(kv => new Item() { Id = kv.Key, Value = kv.Value }).ToArray());

反序列化

  1. 將XML 反序列化為Item 物件陣列:
將XML 反序列化為Item 物件陣列:
var orgDict = ((Item[])serializer.Deserialize(stream))
               .ToDictionary(i => i.Id, i => i.Value);

使用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