在 C# 中向 xml 文档添加命名空间
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以将 Xml 加载到 XmLDocument,然后查找要添加 ns0 的每个节点,并将 XmlNodes 的 Prefix 属性设置为“ns0”。
像这样的东西:
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: