C#中用SelectSingleNode方法解析帶有多個命名空間的XML檔案

來源:互聯網
上載者:User

  今晚在博問看到一個問題:尋找xml檔案中特定屬性值的節點,給它增加一個新屬性,本以為很簡單,隨手寫了一個程式,卻遇到了問題,主要是多個命名空間的原因,尋找了一些資料最終解決了,現把解決的辦法分享出來,大家如果有更好的方案歡迎留言討論。

  XML檔案如下:

<?xml version="1.0" encoding="utf-8" ?>
<Enginuity:ViewControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:Enginuity="clr-namespace:Enginuity.Core;assembly=Enginuity.Core">
<Viewbox Stretch="Fill">
<TextBox Name="Text_10" Value="abc"/>
<TextBox Name="Text_11" Value="bcd"/>
</Viewbox>
</Enginuity:ViewControl>

  這裡小小提示一下,Enginuity:ViewControl 這種寫法表示ViewControl的命名空間為Enginuity。

  現在要得到的是Name為Text_10的TextBox結點的Value屬性值:abc。

  關於SelectSingleNode方法大家可以參考:http://msdn.microsoft.com/en-us/library/h0hw012b.aspx

  這個方法有兩個參數,第一個是string xpath,這個是必須的,第二個是XmlNamespaceManager nsmgr,這個可選。重要的一點就是xpath的寫法,主要就是命名空間:節點/命名空間:節點/...,官方給的樣本中只有一個命名空間,xml結構相對比較簡單。

  從上面的XML檔案中很容易看出ViewControl的命名空間是Enginuity,但ViewBox的命名空間是什麼呢?尋找了XML檔案命名空間的定義後,發現有這麼一句”如果Xml文檔裡沒有明確指出當前節點的命名空間,那麼當前節點的命名空間繼承其父節點的命名空間“,ViewBox的父節點是ViewControl,ViewControl的命名空間是Enginuity,同時注意到Enginuity還不是最終的命名空間,Enginuity的命名空間是xmlns,那麼是哪一個呢?

  動手試唄,於是寫出下面的程式:

            XmlDocument dom = new XmlDocument();
dom.Load(@"E:\NET\test.xml");
XmlNamespaceManager xnm=new XmlNamespaceManager(dom.NameTable);
xnm.AddNamespace("e", "http://schemas.microsoft.com/winfx/2006/xaml/presentation");
xnm.AddNamespace("x", "http://schemas.microsoft.com/winfx/2006/xaml");
xnm.AddNamespace("d", "http://schemas.microsoft.com/expression/blend/2008");
xnm.AddNamespace("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
xnm.AddNamespace("Enginuity", "clr-namespace:Enginuity.Core;assembly=Enginuity.Core");
XmlNodeList xNodes = dom.SelectSingleNode("Enginuity:ViewControl", xnm).ChildNodes;
Console.WriteLine(xNodes[0].NamespaceURI);

  結果如下:

  可以看到,ViewControl的命名空間為最頂及的xmlns,於是寫出下面的程式:

            XmlDocument dom = new XmlDocument();
dom.Load(@"E:\NET\test.xml");
XmlNamespaceManager xnm=new XmlNamespaceManager(dom.NameTable);
xnm.AddNamespace("e", "http://schemas.microsoft.com/winfx/2006/xaml/presentation");
xnm.AddNamespace("x", "http://schemas.microsoft.com/winfx/2006/xaml");
xnm.AddNamespace("d", "http://schemas.microsoft.com/expression/blend/2008");
xnm.AddNamespace("mc", "http://schemas.openxmlformats.org/markup-compatibility/2006");
xnm.AddNamespace("Enginuity", "clr-namespace:Enginuity.Core;assembly=Enginuity.Core");
XmlNode xNode = dom.SelectSingleNode("Enginuity:ViewControl/e:Viewbox/e:TextBox[@Name='Text_10']", xnm);
Console.WriteLine(xNode.Attributes["Value"].Value);

  運行後效果如下:

  期待中的”abc“終於出現了。

  因此,得出一個結論,在用SelectSingleNode方法解析含有多個命名空間的XML檔案時,沒有明確標出命名空間的節點,其命名空間為根節點的命名空間。如果還不確定可以從根節點開始,逐層輸出該級節點的命名空間。

  keyword:SelectSingleNode,C#解析XML檔案,SelectSingleNode多命名空間,

作者:天行健,自強不息

出處:http://www.cnblogs.com/durongjian

本文首發部落格園,著作權歸作者跟部落格園共有。

轉載必須保留本段聲明,並在頁面顯著位置給出本文連結,否則保留追究法律責任的權利。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.