在 C# 中向 xml 文档添加命名空间

发布于 2024-08-17 04:25:55 字数 509 浏览 4 评论 0原文

我有以下 xml

<book>
   <chapter>this is a sample text</chapter>
</book>

,需要向其中添加一个命名空间,就像下面的命名空间一样,

<ns0:book xmlns:ns0="http://mybookurl/sample">
   <chapter>this is a sample text</chapter>
</ns0:book>

我尝试了 Greco 建议,但它不起作用。 在 C# 中使用命名空间创建特定的 XML 文档

感谢任何帮助!

谢谢

I have the following xml

<book>
   <chapter>this is a sample text</chapter>
</book>

and need to add a namespace to it to be like the one below

<ns0:book xmlns:ns0="http://mybookurl/sample">
   <chapter>this is a sample text</chapter>
</ns0:book>

I tried Greco suggestions but it does not work.
Creating a specific XML document using namespaces in C#

would appreciate any help!

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁拥 2024-08-24 04:25:55

为此,您可以将 Xml 加载到 XmLDocument,然后查找要添加 ns0 的每个节点,并将 XmlNodes 的 Prefix 属性设置为“ns0”。

像这样的东西:

XmlDocument myDoc = new XmlDocument();
myDoc.LoadXml("my_file.xml");

foreach (XmlNode eachBook in myDoc.GetElementsByTagName("book")) {
    eachBook.Prefix = "ns0";
}

myDoc.Save("my_changed_file.xml");

You can do this by loading the Xml into an XmLDocument then finding each node that you want to add ns0 to and setting that XmlNodes's Prefix property to "ns0".

Something like this:

XmlDocument myDoc = new XmlDocument();
myDoc.LoadXml("my_file.xml");

foreach (XmlNode eachBook in myDoc.GetElementsByTagName("book")) {
    eachBook.Prefix = "ns0";
}

myDoc.Save("my_changed_file.xml");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文