C#中通过xpath查找xml的指定元素的代码

将做工程过程较好的内容段记录起来,下面内容内容是关于C#中通过xpath查找xml的指定元素的内容。

<?xml version="1.0"?>
<Order id="2004-01-30.195496">
  <Client id="ROS-930252034">
    <Name>Remarkable Office Supplies</Name>
  </Client>
 
  <Items>
    <Item id="1001">
      <Name>Electronic Protractor</Name>
      <Price>42.99</Price>
    </Item>
    <Item id="1002">
      <Name>Invisible Ink</Name>
      <Price>200.25</Price>
    </Item>
  </Items>
</Order>



                                
                        
                                
C#代码
                                
                        
                                

using System;
using System.Xml;
 
public class XPathSelectNodes {
    private static void Main() {
 
        XmlDocument doc = new XmlDocument();
        doc.Load("orders.xml");
        XmlNodeList nodes = doc.SelectNodes("/Order/Items/Item/Name");
 
        foreach (XmlNode node in nodes) {
            Console.WriteLine(node.InnerText);
        }
 
        Console.ReadLine();
    }
}


                                
                        
                                
输出结果
                                
                        
                                


Electronic Protractor
Invisible Ink

猜你喜欢

转载自blog.csdn.net/weixin_44169010/article/details/86592656
今日推荐