辞書へのシリアル化と逆シリアル化
空の Dictionary
<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 の使用 (推奨される場合)
If 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 中国語 Web サイトの他の関連記事を参照してください。