使用XPathNavigator和XPathNodeIterator迭代XML

时间:2015-03-13 15:40:48

标签: c# xml xpath

我正在开发一个项目,我接受一个XML文件,需要迭代XML并输出特定节点的文本值,我正在努力采用最佳方法来实现这一点。

我正在使用以下代码,该代码适用于我定义的单个XPath节点,该节点工作正常,但我需要提取其他节点及其相关文本。任何指向正确方向的人都会非常感激。我一直在阅读Microsoft的XPathNavigatorXPathNodeIteratorXMLReader文档并使用他们的示例,但似乎没有一个适合这个特定的用例。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.XPath;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            XPathDocument document = new XPathDocument("Security_Policy.xml");
            XPathNavigator navigator = document.CreateNavigator();
            XPathNodeIterator nodes = navigator.Select("//Rule_Number");
            while (nodes.MoveNext())
            {
                Console.WriteLine(nodes.Current.Value);
            }
        }
    }
}

以下是我正在使用的相关XML块。

<?xml version="1.0" encoding="utf-8"?>
      <rule>
        <Name></Name>
        <Class_Name>security_rule</Class_Name>
        <Rule_UUID>{9BA1463A-00D0-4819-88B6-650407733A96}</Rule_UUID>
        <Rule_Number>1</Rule_Number>
        <action>
          <action>
            <Name>accept</Name>
            <Class_Name>accept_action</Class_Name>
            <action><![CDATA[]]></action>
            <identity_settings>
              <Name></Name>
              <Class_Name>identity_action_settings</Class_Name>
              <allow_ad_query>true</allow_ad_query>
              <allow_captive_portal>true</allow_captive_portal>
              <allow_identity_agent>true</allow_identity_agent>
              <allowed_sources><![CDATA[All Sources]]></allowed_sources>
              <redirect_to_captive_portal>false</redirect_to_captive_portal>
              <require_packet_tagging>false</require_packet_tagging>
              <type><![CDATA[identity_action_settings]]></type>
            </identity_settings>
            <macro><![CDATA[RECORD_CONN]]></macro>
            <type><![CDATA[accept]]></type>
          </action>
        </action>
        <comments><![CDATA[]]></comments>
        <disabled>false</disabled>
        <dst>
          <Name></Name>
          <Class_Name>rule_destination</Class_Name>
          <members>
            <reference>
              <Name></Name>
              <Table>network_objects</Table>
            </reference>
            <reference>
              <Name></Name>
              <Table>network_objects</Table>
            </reference>
          </members>
          <compound></compound>
          <op><![CDATA[]]></op>
        </dst>
        <global_location><![CDATA[middle]]></global_location>
        <install>
          <Name></Name>
          <Class_Name>rule_install</Class_Name>
          <members>
            <reference>
              <Name>Any</Name>
              <Table>globals</Table>
            </reference>
          </members>
          <compound></compound>
        </install>
        <name><![CDATA[]]></name>
        <services>
          <Name></Name>
          <Class_Name>rule_services</Class_Name>
          <members>
            <reference>
              <Name>Any</Name>
              <Table>globals</Table>
            </reference>
          </members>
          <compound></compound>
          <op><![CDATA[]]></op>
        </services>
        <src>
          <Name></Name>
          <Class_Name>rule_source</Class_Name>
          <members>
            <reference>
              <Name></Name>
              <Table>network_objects</Table>
            </reference>
            <reference>
              <Name></Name>
              <Table>network_objects</Table>
            </reference>
          </members>
          <compound></compound>
          <op><![CDATA[]]></op>
        </src>
        <through>
          <Name></Name>
          <Class_Name>rule_vpn</Class_Name>
          <members>
            <reference>
              <Name>Any</Name>
              <Table>globals</Table>
            </reference>
          </members>
          <compound></compound>
        </through>
        <time>
          <time>
            <Name>Any</Name>
            <Table>globals</Table>
          </time>
        </time>
        <track>
          <track>
            <Name>Log</Name>
            <Table>tracks</Table>
          </track>
        </track>
      </rule>

1 个答案:

答案 0 :(得分:1)

我相信你的XPath路径是不正确的,因为“Rule_Number”元素不是文档的根,但是我不是XPath专家所以请用下面的XPath建议:

//rule/Rule_Number

这是另一种方法,因为我是使用linq-to-xml的主要倡导者,因为它非常直观易用:

XDocument doc = XDocument.Load("Security_Policy.xml");
var ruleNodes = doc.Root.Elements("Rule_Number");
foreach(var node in ruleNodes)
{
    Console.WriteLine(node.Value);
}

修改

如果您想要元素而不管XML文档层次结构中的哪个位置,您可以使用doc.Descendants("TAG NAME")获取具有匹配“标记名称”的任何内容(从技术上讲,该字段中的数据为XName ,但现在不要担心。)