C#經由過程xpath查找xml指定元素的辦法。本站提示廣大學習愛好者:(C#經由過程xpath查找xml指定元素的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#經由過程xpath查找xml指定元素的辦法正文
本文實例講述了C#經由過程xpath查找xml指定元素的辦法。分享給年夜家供年夜家參考。詳細以下:
orders.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() {
// Load the document.
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
願望本文所述對年夜家的C#法式設計有所贊助。