序列化和反序列化為字典
當出現空字典
<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中文網其他相關文章!