序列化和反序列化为字典
当出现空字典
<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中文网其他相关文章!