在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中文网其他相关文章!