1

我试图找到一种简单的方法来将 XML 添加到 XML-with-xmlns 而无需每次都xmlns=""指定。xmlns

我都尝试了XDocumentXmlDocument但找不到简单的方法。我得到的最接近的是这样做:

XmlDocument xml = new XmlDocument();

XmlNode docNode = xml.CreateXmlDeclaration("1.0", "UTF-8", null);
xml.AppendChild(docNode);
XmlElement root = xml.CreateElement("root", @"http://example.com");
xml.AppendChild(root);

root.InnerXml = "<a>b</a>";

但我得到的是:

<root xmlns="http://example.com">
  <a xmlns="">b</a>
</root>

那么:有没有办法在InnerXml不修改的情况下设置它?

4

1 回答 1

2

您可以a XmlElement按照创建元素的相同方式创建root,并指定该InnerText元素的。

选项1:

string ns = @"http://example.com";

XmlDocument xml = new XmlDocument();

XmlNode docNode = xml.CreateXmlDeclaration("1.0", "UTF-8", null);
xml.AppendChild(docNode);

XmlElement root = xml.CreateElement("root", ns);
xml.AppendChild(root);

XmlElement a = xml.CreateElement("a", ns);
a.InnerText = "b";
root.AppendChild(a);

选项 2:

XmlDocument xml = new XmlDocument();

XmlNode docNode = xml.CreateXmlDeclaration("1.0", "UTF-8", null);
xml.AppendChild(docNode);

XmlElement root = xml.CreateElement("root");
xml.AppendChild(root);
root.SetAttribute("xmlns", @"http://example.com");

XmlElement a = xml.CreateElement("a");
a.InnerText = "b";
root.AppendChild(a);

生成的 XML:

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://example.com">
    <a>b</a>
</root>

如果您使用root.InnerXml = "<a>b</a>";而不是XmlElementXmlDocument生成的 XML 中创建,则为:

选项1:

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://example.com">
    <a xmlns="">b</a>
</root>

选项 2:

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://example.com">
    <a xmlns="http://example.com">b</a>
</root>
于 2013-02-12T20:55:42.040 回答