繁体   English   中英

是否需要有关在C#中使用XPathNavigator的帮助?

[英]Need Help About Using XPathNavigator in C#?

我的XML文件如下。 它混合了架构和普通元素。

<?xml version="1.0" encoding="utf-8"?>
<!-- R1 -->
<ax:root xmlns:ax="http://amecn/software/realtime/ax">
  <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="EquipmentConstants">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element minOccurs="0" maxOccurs="unbounded" ref="EquipmentConstant" />
        </xsd:sequence>
      </xsd:complexType>
      <xsd:unique name="id">
        <xsd:selector xpath=".//EquipmentConstant" />
        <xsd:field xpath="@id" />
      </xsd:unique>
    </xsd:element>
    ......
    ......
  </xsd:schema>
  <EquipmentConstants xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <EquipmentConstant id="0">
      <Name>SerialNumber</Name>
      <Group>SYSTEM</Group>
      <Data>
        <Value min="0" max="10000000" scale_factor="0" unit="U_NO_UNITS" permission="NolimitedAndNoChangeable" type="xsd_string" enum="" flag="0">0</Value>
      </Data>
      <Description>Serial Number</Description>
    </EquipmentConstant>
    .....
    .....
  </EquipmentConstants>
</ax:root>

我的C#代码如下。 我想循环元素开始(通过传递模式的所有内容)

<EquipmentConstants xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

XPathDocument doc = new XPathDocument("test.xml");
                XPathNavigator navigator = doc.CreateNavigator();

                navigator.MoveToRoot(); // <?xml version="1.0" encoding="utf-8"?>
                //navigator.MoveToFirstChild();   // <!-- R1 -->
                // 1st, I tried to use MoveToChield(), But I failed to move there.
                navigator.MoveToChild("EquipmentConstants"); 
                // Then, I also tried to use SelectSingleNode(). But I failed too. 
                navigator.SelectSingleNode("ax/EquipmentConstants");
                while (navigator.MoveToNext())
                {
                // do something.
                } 

你能给我一些建议吗? 谢谢。

        XPathNavigator navigator = doc.CreateNavigator();
        if (navigator == null)
        {
            return;
        }
        foreach (XPathNavigator nav in
            navigator.Select("/" + "EquipmentConstants" + "/" + "EquipmentConstant"))
        {

        }

我的解决方案如下。

            XPathDocument doc = new XPathDocument("test.xml");
            XPathNavigator navigator = doc.CreateNavigator();

            navigator.MoveToRoot(); // <?xml version="1.0" encoding="utf-8"?>
            navigator.MoveToFirstChild();   // <!-- R1 -->
            navigator.MoveToNext(); //   <ax:root xmlns:ax="http://amecn/software/realtime/ax">
            navigator.MoveToChild("EquipmentConstants", ""); // <EquipmentConstants xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

            navigator.MoveToFirstChild();   // <EquipmentConstant id="0">
            do
            {
            // Loop body;
            } while (navigator.MoveToNext());

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM