其他分享
首页 > 其他分享> > CodeGo.net>如何使用LINQ XML添加名称空间到XML

CodeGo.net>如何使用LINQ XML添加名称空间到XML

作者:互联网

问题更新:如果我的问题不清楚,我非常抱歉

这是即时消息正在使用的代码

XDocument doc = XDocument.Parse(framedoc.ToString());
foreach (var node in doc.Descendants("document").ToList())
{
    XNamespace ns = "xsi";
    node.SetAttributeValue(ns + "schema", "");
    node.Name = "alto";
}

这是输出

<alto p1:schema="" xmlns:p1="xsi">

我的目标是这样的

xsi:schemaLocation=""

p1和xmlns:p1 =“ xsi”来自何处?

解决方法:

当你写

XNamespace ns = "xsi";

这将创建一个URI为“ xsi”的XNamespace.那不是你想要的.您需要通过xmlns属性使用适当的URI的xsi …命名空间别名.所以你要:

XDocument doc = XDocument.Parse(framedoc.ToString());
foreach (var node in doc.Descendants("document").ToList())
{
    XNamespace ns = "http://www.w3.org/2001/XMLSchema-instance";
    node.SetAttributeValue(XNamespace.Xmnls + "xsi", ns.NamespaceName);
    node.SetAttributeValue(ns + "schema", "");
    node.Name = "alto";
}

或者更好的方法是,在根元素上设置别名:

XDocument doc = XDocument.Parse(framedoc.ToString());
XNamespace ns = "http://www.w3.org/2001/XMLSchema-instance";
doc.Root.SetAttributeValue(XNamespace.Xmlns + "xsi", ns.NamespaceName);
foreach (var node in doc.Descendants("document").ToList())
{
    node.SetAttributeValue(ns + "schema", "");
    node.Name = "alto";
}

创建文档的示例:

using System;
using System.Xml.Linq;

public class Test
{
    static void Main()
    {
        XNamespace ns = "http://www.w3.org/2001/XMLSchema-instance";
        XDocument doc = new XDocument(
            new XElement("root",
                new XAttribute(XNamespace.Xmlns + "xsi", ns.NamespaceName),
                new XElement("element1", new XAttribute(ns + "schema", "s1")),
                new XElement("element2", new XAttribute(ns + "schema", "s2"))
            )                         
        );
        Console.WriteLine(doc);
    }
}

输出:

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <element1 xsi:schema="s1" />
  <element2 xsi:schema="s2" />
</root>

标签:xml-namespaces,linq,xml,c
来源: https://codeday.me/bug/20191112/2023524.html