18

我制作了一个方法来检查 XML 文件中是否存在属性。如果它不存在,则返回“False”。它可以工作,但解析文件需要很长时间。它似乎读取每一行的整个文件。我在这里错过了什么吗?我可以以某种方式使其更有效吗?

    public static IEnumerable<RowData> getXML(string XMLpath)
    {
        XDocument xmlDoc = XDocument.Load("spec.xml");

        var specs = from spec in xmlDoc.Descendants("spec")
                    select new RowData
                    {
                        number= (string)spec.Attribute("nbr"),
                        name= (string)spec.Attribute("name").Value,
                        code = (string)spec.Attribute("code").Value,
                        descr = (string)spec.Attribute("descr").Value,
                        countObject = checkXMLcount(spec),


        return specs;
    }

    public static string checkXMLcount(XElement x)
    {
        Console.WriteLine(x.Attribute("nbr").Value);
        Console.ReadLine();
        try
        {
            if (x.Attribute("mep_count").Value == null)
            {
                return "False";
            }
            else
            {
                return x.Attribute("mep_count").Value;
            }
        }
        catch
        {
            return "False";
        }
    }

我测试了用只返回和接收字符串的方法替换该方法:

public static string checkXMLcount(string x)
{
    Console.WriteLine(x);
    Console.ReadLine();
    return x;

}

我制作了一个只有一行的 XML 文件。控制台打印出该值 15 次。有任何想法吗?

4

3 回答 3

43

解决了!不需要额外的方法:

countObject = spec.Attribute("mep_count") != null ? spec.Attribute("mep_count").Value : "False",
于 2012-11-13T12:22:17.573 回答
2

你可以试试这个看看有没有改善

class xmlAttributes
{
    public string Node;
    public Dictionary<string, string> Attributes;
} 

现在有了这个 LINQ,所有属性都存储在字典中(每个节点),并且可以通过属性名称访问。

var Result = XElement.Load("somedata.xml").Descendants("spec")
                      .Select(x => new xmlAttributes
                      {
                          Node = x.Name.LocalName,
                          Attributes = x.Attributes()
                                     .ToDictionary(i => i.Name.LocalName,
                                                        j => j.Value)
                      });

检查所有 XML 节点上是否存在属性

var AttributeFound = Result.All(x => x.Attributes.ContainsKey("AttrName"));

检查属性是否至少出现一次

var AttributeFound = Result.Any(x => x.Attributes.ContainsKey("AttrName"));
于 2012-11-12T11:18:44.227 回答
0

只是想指出:

countObject = spec.Attribute("mep_count")?.Value;

哪个在链条上一直有效:

countObject = spec?.Attribute("mep_count")?.Value

这将产生相同的效果,其中 countObject 将设置为 null 或该值(如果存在)。

于 2020-06-24T03:12:31.967 回答