首頁 >後端開發 >C++ >如何在 C# 中使用 SelectSingleNode 檢索帶有命名空間的 XML 元素?

如何在 C# 中使用 SelectSingleNode 檢索帶有命名空間的 XML 元素?

Barbara Streisand
Barbara Streisand原創
2025-01-07 20:53:10949瀏覽

How Do I Use SelectSingleNode in C# to Retrieve XML Elements with Namespaces?

在C#中使用SelectSingleNode處理XML命名空間

使用SelectSingleNode存取XML元素時,一個常見問題是,如果標籤包含XML命名空間,它可能會傳回null。出現此問題是因為SelectSingleNode預設只考慮預設命名空間中的元素。

考慮提供的範例XML結構:

<code class="language-xml"><project defaulttargets="Build" toolsversion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"><itemgroup><compile include="clsWorker.cs"></compile></itemgroup></project></code>

將此XML載入到XmlDocument中並嘗試擷取「Compile」元素時:

<code class="language-csharp">XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(Xml);

XmlNode node = xmldoc.SelectSingleNode("//Compile"); // 返回null</code>

結果將為null,因為「Compile」元素位於「https://www.php.cn/link/55a51239dc6fe8cf8c09ec91f36f5250

解決方案:使用XmlNamespaceManager

為了解決這個問題,我們需要使用XmlNamespaceManager在執行SelectSingleNode操作時指定正確的命名空間:

<code class="language-csharp">XmlNamespaceManager ns = new XmlNamespaceManager(xmldoc.NameTable);
ns.AddNamespace("msbld", "http://schemas.microsoft.com/developer/msbuild/2003");
XmlNode node = xmldoc.SelectSingleNode("//msbld:Compile", ns);</code>

XmlNamespaceManager允許我們將命名空間前綴「msbld」對應到實際的命名空間URI。透過此方法,我們現在可以使用修改後的SelectSingleNode語法成功檢索「Compile」元素。

以上是如何在 C# 中使用 SelectSingleNode 檢索帶有命名空間的 XML 元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn