這篇文章主要為大家展示了“XML中XDocument和XmlDocument的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“XML中XDocument和XmlDocument的示例分析”這篇文章吧。
創(chuàng)新互聯(lián)公司專注于新興網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供新興營銷型網(wǎng)站建設(shè),新興網(wǎng)站制作、新興網(wǎng)頁設(shè)計、新興網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造新興網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供新興網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
StringBuilder str = new StringBuilder();
XmlDocument document = new XmlDocument();
document.Load("List1.xml");
XmlNodeList nodelist = document.GetElementsByTagName("person");
foreach (XmlNode item in nodelist)
{
str.Append(item.FirstChild.InnerText.ToString());
str.Append(" ");
}
textBox1.Text = str.ToString ();
通過document可以獲取指定名稱或者指定ID,上面是獲取指定的名稱。然后通過遍歷輸出該名稱節(jié)點(diǎn)下的第一個子節(jié)點(diǎn)的內(nèi)容。
XDocument document = XDocument.Load("List1.xml");
XElement rootElement = document.Root;
IEnumerable ie = rootElement.Descendants("person").Where(x => Convert.ToInt32(x.Attribute("id").Value) > 1);
foreach (var item in ie)
{
textBox1.Text += item.Attribute("id").Value+"\t";
}
通過XDocument就可以更加方便快捷的查詢我們所需要的數(shù)據(jù),其中可以結(jié)合lambda表達(dá)式來進(jìn)行檢索。
以上是“XML中XDocument和XmlDocument的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!