web-dev-qa-db-ja.com

辞書<文字列、文字列>をXMLに、またはその逆に変換する簡単な方法

おそらくlinq?を使用して、Dictionary<string,string> XMLドキュメントに。そして、xmlを辞書に戻す方法。

XMLは次のようになります。

<root>
      <key>value</key>
      <key2>value</key2>
</root>
38
mrblah

辞書から要素:

Dictionary<string, string> dict = new Dictionary<string,string>();
XElement el = new XElement("root",
    dict.Select(kv => new XElement(kv.Key, kv.Value)));

要素から辞書へ:

XElement rootElement = XElement.Parse("<root><key>value</key></root>");
Dictionary<string, string> dict = new Dictionary<string, string>();
foreach(var el in rootElement.Elements())
{
   dict.Add(el.Name.LocalName, el.Value);
}
84
LorenVS

DataContractSerializerを使用できます。以下のコード。

    public static string SerializeDict()
    {
        IDictionary<string, string> dict = new Dictionary<string, string>();
        dict["key"] = "value1";
        dict["key2"] = "value2";
        // serialize the dictionary
        DataContractSerializer serializer = new DataContractSerializer(dict.GetType());

        using (StringWriter sw = new StringWriter())
        {
            using (XmlTextWriter writer = new XmlTextWriter(sw))
            {
                // add formatting so the XML is easy to read in the log
                writer.Formatting = Formatting.Indented;

                serializer.WriteObject(writer, dict);

                writer.Flush();

                return sw.ToString();
            }
        }
    }
12
dcp

XML to辞書にこれを使用してください:

     public static Dictionary<string, string> XmlToDictionary
                                        (string key, string value, XElement baseElm)
        {
            Dictionary<string, string> dict = new Dictionary<string, string>();

            foreach (XElement Elm in baseElm.Elements())
            { 
                string dictKey = Elm.Attribute(key).Value;
                string dictVal = Elm.Attribute(value).Value;

                dict.Add(dictKey, dictVal);

            }

            return dict;
        }

辞書からXML:

 public static XElement DictToXml
                  (Dictionary<string, string> inputDict, string elmName, string valuesName)
        {

            XElement outElm = new XElement(elmName);

            Dictionary<string, string>.KeyCollection keys = inputDict.Keys;

            XElement inner = new XElement(valuesName);

            foreach (string key in keys)
            {
                inner.Add(new XAttribute("key", key));
                inner.Add(new XAttribute("value", inputDict[key]));
            }

            outElm.Add(inner);

            return outElm;
        }

XML:

<root>
  <UserTypes>
    <Type key="Administrator" value="A"/>
    <Type key="Affiliate" value="R" />
    <Type key="Sales" value="S" />
  </UserTypes>
</root>

要素UserTypesをそのメソッドに渡すだけで、対応するキーと値を含む辞書を取得できます。その逆も同様です。辞書を変換した後、要素をXDocumentオブジェクトに追加し、ディスクに保存します。

6
Nikolay

IDictionaryでこのようなことをしました

XElement root = new XElement("root");

foreach (var pair in _dict)
{
    XElement cElement = new XElement("parent", pair.Value);
    cElement.SetAttributeValue("id", pair.Key);
    el.Add(cElement);
}

次のXMLが生成されました。

<root>
  <parent id="2">0</parent>
  <parent id="24">1</parent>
  <parent id="25">2</parent>
  <parent id="3">3</parent>
</root>
4
Vaibhav

私は少しの違い(文字列、オブジェクト)で同じものを探していましたが、このように解決しました:

public static XElement ToXML(this Dictionary<string, object> dic, string firstNode)
{
    IList<XElement> xElements = new List<XElement>();

    foreach (var item in dic)
        xElements.Add(new XElement(item.Key, GetXElement(item.Value)));

    XElement root = new XElement(firstNode, xElements.ToArray());

    return root;
}

private static object GetXElement(object item)
{
    if (item != null && item.GetType() == typeof(Dictionary<string, object>))
    {
        IList<XElement> xElements = new List<XElement>();
        foreach (var item2 in item as Dictionary<string, object>)
            xElements.Add(new XElement(item2.Key, GetXElement(item2.Value)));

        return xElements.ToArray();
    }

    return item;
}

...辞書用(ネスト):

var key2 = new Dictionary<string, object>
                {
                    {"key3", "value"},
                    {"key4", "value"},
                };

var key = new Dictionary<string, object>
                {
                    {"key", "value"}
                    {"key2", key1},
                };

...「ルート」をfirstNode iとして渡す:

<root>
    <key>value</key>
    <key2>
        <key3>value</key3>
        <key4>value</key4>
    </key2>
</root>

編集済み!

1