2

我有一个要添加预定义名称规范的 xml 文件。以下是代码:

private const string uri = "http://www.w3.org/TR/html4/";
private static readonly List<string> namespaces = new List<string> { "lun" };

public static XElement AddNameSpaceAndLoadXml(string xmlFile) {
    var nameSpaceManager = new XmlNamespaceManager(new NameTable());
    // add custom namespace to the manager and take the prefix from the collection
    namespaces.ToList().ForEach(name => {
         nameSpaceManager.AddNamespace(name, string.Concat(uri, name));
    });

    XmlParserContext parserContext = new XmlParserContext(null, nameSpaceManager, null, XmlSpace.Default);
    using (var reader = XmlReader.Create(@xmlFile, null, parserContext)) {
        return XElement.Load(reader);
    }
}

问题是内存中生成的 xml 没有显示添加的正确命名空间。此外,它们不会添加到根目录,而是添加到标签旁边。下面添加了 Xml。在 xml 中它显示p3:read_datawhile should be lun:read_data.

我如何在根标签上添加命名空间而不是得到不正确的名称。

示例输入 xml:

<config file-suffix="perf">
 <overview-graph title="Top 5 LUN Reads" max-series="5" remove-series="1">
  <counters lun:read_data=""/>
 </overview-graph>
</config>

预期输出 xml:

<config file-suffix="perf" xmlns:lun="http://www.w3.org/TR/html4/lun">
 <overview-graph title="Top 5 LUN Reads" max-series="5" remove-series="1">
  <counters lun:read_data=""  /> 
 </overview-graph>
</config>

使用上述代码的输出:

<config file-suffix="perf" >
 <overview-graph title="Top 5 LUN Reads" max-series="5" remove-series="1">
  <counters p3:read_data=""  xmlns:p3="http://www.w3.org/TR/html4/lun"/> 
 </overview-graph>
</config>
4

1 回答 1

0

我不确定是否有更好的方法,但手动添加命名空间似乎可行。

using (var reader = XmlReader.Create(@xmlFile, null, parserContext)) {
    var newElement = XElement.Load(reader);
    newElement.Add(new XAttribute(XNamespace.Xmlns + "lun", string.Concat(uri, "lun")));
    return newElement;
}

但是,我不知道一种概括这一点的方法(显然,您可以通过枚举它来添加整个集合,但仅输出使用的命名空间可能很有趣)。

于 2012-07-24T15:11:28.303 回答