使用XmlNodeList遍历XML的特定节点

时间:2014-08-05 13:21:34

标签: c# xml xmldocument xmlnodelist

我有以下XML类型文件

<root>
<info version_id=... product_id=... account_id=...>
<CRM>
<result key=... value=...>
<result key=... value=...>
....
</CRM>
<result key=... value=....>
</info>

<info version_id=... product_id=... account_id=...>
<CRM>
<result key=... value=...>
<result key=... value=...>
....
</CRM>
<result key=... value=....>
</info>
</root>

我需要为每个“info”节点创建以下列表: 清单(帐户+产品,密钥,价值) 而且我必须只接受属于CRM节点的“关键”和“价值”信息。

所以我想要的关闭是这个代码

string[] directoryXml = Directory.GetFiles(directory);
var listxmlresult = new List<XmlResultNode>();

foreach (var xmlfile in directoryXml)
{
    var docxml = new XmlDocument();
    docxml.Load(xmlfile);
    XmlNodeList nodesInfo = docxml.SelectNodes("//info");
    XmlNodeList nodesResult = docxml.SelectNodes("//info/CRM/result");


    foreach (XmlNode info in nodesInfo)
    {

        string VersionId = info.Attributes["version_id"].Value;
        string ProductId = info.Attributes["product_id"].Value;
        string AccountId = info.Attributes["account_id"].Value;
        string AccountProductId = AccountId + " : " + ProductId;


        // verify that CRM node exist

        if (docxml.SelectSingleNode("//info/CRM") == null)
        {
            //To do log info that CRM node is not available for the specific file
        }

        foreach (XmlNode result in nodesResult)
        {
            //To do verfiy value is empty

            string Key = result.Attributes["key"].Value;
            string Value = result.Attributes["value"].Value;

            if (Value.Length != 0)
            {
                var listXmlResultTemp = new XmlResultNode(AccountProductId, Key, Value);
                listxmlresult.Add(listXmlResultTemp);
            }
        }
    }
}

但是此代码返回列表,其中包含每个“accountproduct”的所有“key”“value”。

我无法在第二个循环中管理只读当前节点。 我尝试了几种xpath的可能性,但我无法通过XmlNodeList获取当前位置。

韩国社交协会

1 个答案:

答案 0 :(得分:1)

您发布的内容并不是很清楚。我想你想用这种方式改变内循环:

foreach (XmlNode result in info.SelectNodes("./CRM/result"))
{
    string Key = result.Attributes["key"].Value;
    string Value = result.Attributes["value"].Value;
    .....
    .....
}