获取每个XML根节点的子节点数

时间:2015-03-03 20:15:28

标签: c# xml

这就是XML的外观。

<nvd xmlns:scap-core=....>
  <entry id="CVE-2015-0001">
     <vuln:vulnerable-configuration id="http://www.nist.gov/">
        <cpe-lang:logical-test operator="OR" negate="false">
            <cpe-lang:fact-ref name="cpe:/o:microsoft:windows_8:-"/>
            <cpe-lang:fact-ref name="cpe:8.1:-"/>
            <cpe-lang:fact-ref name="cpe:/o:microer_2012:-:gold"/>
            <cpe-lang:fact-ref name="cpe:/o:microsoft:w~~"/>

我想得到&#34; cpe-lang的数量:fact-ref&#34;每个条目的节点,并显示条目ID和节点数。

CVE-2015-0001 4

这就是我试过的

var document = XDocument.Load("nvdcve-2.0-2015.xml");
var root = document.Root;
var elements = root.Descendants("entry");
foreach (var entry in elements)
{
    string id = entry.Attribute("id").Value; 
    var cpe = entry.Elements("cpe-lang:fact-ref");
    int nr = 0;
    foreach (var item in cpe)
    {
        nr++;
    }    
Console.WriteLine(id + " " + nr );
}

2 个答案:

答案 0 :(得分:0)

你快到了:

var cpe = entry.Descendants("cpe-lang:fact-ref");

但实际上你并不需要内循环:

foreach (var entry in elements)
{
    var id = entry.Attribute("id").Value;
    var factRefsCount = entry.Descendants("cpe-lang:fact-ref").Count();
    Console.WriteLine(id + " " + factRefsCount);
}

答案 1 :(得分:0)

更改此行:

var elements = root.Descendants("entry");

成为:

var elements = root.Descendants()
                   .Where(x => x.Name.LocalName == "entry");

您在entry节点上有一个命名空间,由于我们无法看到它,我们无法帮助您。但是,上面将找到名为entry的所有节点。

您的专线正在寻找名为entry的无名称空间节点(没有名称空间的节点),而且没有。