[C#对多级节点类型的xml进行字典优化

问题描述 投票:1回答:2

我的XML类型为:

<?xml version="1.0" encoding="UTF-8" ?>
<root>
  <set1>
    <a>
      <value>False</value>
      <defaultValue>False</defaultValue>
    </a>
    <b>
      <value>False</value>
      <defaultValue>False</defaultValue>
    </b>
  </set1>
  <set2>
     <c>
      <value>False</value>
      <defaultValue>False</defaultValue>
    </c>
  </set2>
</root>

现在我尝试使用下面的代码将其转换成字典:

using System.Collections.Generic;
using System.Xml.Linq;

namespace testxml
{
    struct ConfigFileElements
    {
        public string value;
        public string defaultValue;
    }
    class xmltestread
    {
        public static Dictionary<string, Dictionary<string, ConfigFileElements>>
            ReadConfigXml(XDocument configFile)
        {
            var dict = new Dictionary<string, Dictionary<string, ConfigFileElements>>();

            if (configFile.Root != null)
            {
                foreach (var element in configFile.Root.Elements())
                {
                    var list = new Dictionary<string, ConfigFileElements>();
                    foreach (var child in element.Elements())
                    {
                        var elementvalues = new ConfigFileElements();
                        foreach (var node in child.Elements())
                        {
                            if (node.Name.ToString().Equals("value"))
                            {
                                elementvalues.value = node.Value;
                            }
                            else if (node.Name.ToString().Equals("defaultValue"))
                            {
                                elementvalues.defaultValue = node.Value;
                            }
                        }
                        list.Add(child.Name.ToString(), elementvalues);
                    }
                    dict.Add(element.Name.ToString(), list);
                }
            }
            return dict;
        }
    }
}

这里的问题是我必须迭代三个循环来构造我的字典,.net中是否还有其他功能可以使代码清晰易读,]。

就像linq to xml或xml中任何其他类型的内置库都可以进行这种类型的复杂操作

另外,我还将添加更多标签,例如最小值/最大值,并且这些标签还将向存在的现有条件添加其他两个if语句,这是另一个约束。

i具有以下类型的xml:[ False False

c# xml xml-parsing linq-to-xml
2个回答
1
投票

您可以使用Xml.Linq和本地函数来解析每个set项目并按名称获取子xml元素,从而稍微简化代码。>

var doc = XDocument.Parse(xml);

var dict = new Dictionary<string, Dictionary<string, ConfigFileElements>>();
foreach (var set in doc.Root.Elements())
{
    dict.Add(set.Name.ToString(), ParseSet(set));
}

Dictionary<string, ConfigFileElements> ParseSet(XElement set)
{
    var dict = new Dictionary<string, ConfigFileElements>();
    foreach (var element in set.Elements())
    {
        var config = new ConfigFileElements()
        {
            value = element.Elements(nameof(ConfigFileElements.value)?.FirstOrDefault()?.Value,
            //parse min/max on the same way
            defaultValue = element.Elements(nameof(ConfigFileElements.defaultvalue))?.FirstOrDefault()?.Value
        };

        dict.Add(element.Name.ToString(), config);
    }

    return dict;
}

0
投票

尝试以下内容:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleAppliation157
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            Dictionary<string, List<List<string>>> dict = doc.Root.Elements()
                .GroupBy(x => x.Name.LocalName.ToUpper(), y => y.Elements().SelectMany(a => 
                    a.Elements().Select(b => new List<string> { a.Name.LocalName, b.Name.LocalName, (string)b })).ToList()).ToList()
                .ToDictionary(x => x.Key, y => y.FirstOrDefault());
        }
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.