0

我遇到了一个问题,即当我使用 System.Xml 类以编程方式创建 XML 文档然后使用 Save 方法时,输出 XML 不使用节点的 QNames,而只使用本地名称。

例如期望的输出

<ex:root>
  <ex:something attr:name="value">
</ex:root>

但我目前得到的是

<root>
  <something name="value">
</root>

这有点简化,因为我使用的所有命名空间都是使用文档元素上的 xmlns 属性完全定义的,但为了清楚起见,我在这里省略了。

我知道 XmlWriter 类可用于保存 XmlDocument 并且这需要 XmlWriterSettings 类,但我看不到如何配置它以获得完整的 QNames 输出。

4

1 回答 1

1

正如您所说,根元素需要命名空间定义:

<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
    xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension">
    <iis:WebSite Id="asdf" />
</Wix>

上述xml的代码:

XmlDocument document = new XmlDocument();
document.AppendChild(document.CreateXmlDeclaration("1.0", null, null));
XmlNode rootNode = document.CreateElement("Wix", "http://schemas.microsoft.com/wix/2006/wi");
XmlAttribute attr = document.CreateAttribute("xmlns:iis", "http://www.w3.org/2000/xmlns/");
attr.Value = "http://schemas.microsoft.com/wix/IIsExtension";
rootNode.Attributes.Append(attr);
rootNode.AppendChild(document.CreateElement("iis:WebSite", "http://schemas.microsoft.com/wix/IIsExtension"));
document.AppendChild(rootNode);

将命名空间 uri 作为参数传递给 CreateAttribute 和 CreateElement 方法的要求似乎违反直觉,因为可以说文档能够派生该信息,但是嘿,这就是它的工作原理。

于 2009-07-21T15:36:59.847 回答