1

花了一段时间,但我终于能够根据用户输入的命名空间和节点名称修改 XML 文档:

string nodeName = "DefinitionName"; // this is really provided by the user
string namespace = "http://schemas.datacontract.org/2004/07/Xxx.Session";  // also user-provided

XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(taskResolved.XmlPathAndFileName);
XmlElement rootElement = xmlDocument.DocumentElement;
XmlNamespaceManager namespaceManager = new XmlNamespaceManager(xmlDocument.NameTable);
namespaceManager.AddNamespace("snuh", namespace);  // hard-coded prefix, grrr...

XmlNodeList xmlNodes;

xmlNodes = rootElement.SelectNodes("//snuh:" + nodeName, namespaceManager);

我觉得我做错了什么,因为我必须硬编码一个前缀(snuh)。我可以尝试选择一个前缀,比如 snuh,我希望它永远不会出现在文档中,但这并不是万无一失的。另一种选择是使用 GUID 作为前缀,但这似乎是一种 hack 解决方法。我错过了什么吗?有没有更好的办法?

XML 文档的顶部如下所示:

<?xml version="1.0" encoding="utf-8"?>
<SessionStateInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="1"
    z:Type="Xxx.SessionStateInfo"
    z:Assembly="Xxx.Common, Version=6.2.0.0, Culture=neutral, PublicKeyToken=null"
    xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/"
    xmlns="http://schemas.datacontract.org/2004/07/Xxx.Session">
      <CoaterNumber>25</CoaterNumber>
      <DefinitionName z:Id="2">TwoLineMarkerDefinition</DefinitionName>
      <EnableManualMode>true</EnableManualMode>
4

2 回答 2

2

If you want to simply select the first DefinitionName node.

You may write

XmlNode node = rootElement[nodeName, namespace];

and if you want the whole list:

XmlNodeList nodeList = rootElement.GetElementsByTagName(nodeName, namespace);
于 2013-03-29T15:11:49.497 回答
1

使用 XPathlocal-name()namespace-uri()函数怎么样?

string xpath = string.Format("//*[local-name()='{0}' and namespace-uri()='{1}']", nodeName, namespace);
xmlNodes = rootElement.SelectNodes(xpath);

不知道是否支持这些功能XmlDocument,还没有测试过。

于 2013-03-29T15:05:00.267 回答