首页 > 后端开发 > C++ > 如何使用 XElement 生成带前缀节点的 XML 文档?

如何使用 XElement 生成带前缀节点的 XML 文档?

Barbara Streisand
发布: 2024-12-30 06:27:11
原创
249 人浏览过

How to Generate XML Documents with Prefixed Nodes using XElement?

XElement 中的 XML 命名空间前缀

使用 XElement 创建带有节点前缀的 XML 文档可能具有挑战性。本问题探讨了如何在使用 XElement 时处理前缀命名空间。

问题:我们如何生成像本例一样带有前缀节点的 XML 文档?

<sphinx:docset>
  <sphinx:schema>
    <sphinx:field name="subject"/>
    <sphinx:field name="content"/>
    <sphinx:attr name="published" type="timestamp"/>
 </sphinx:schema>
</sphinx:docset>
登录后复制

异常: 使用 new XElement("sphinx:docset") 会抛出异常:

Unhandled Exception: System.Xml.XmlException: The ':' character, hexadecimal val
  ue 0x3A, cannot be included in a name.
登录后复制

答案:使用 LINQ to XML,我们可以轻松地向元素添加命名空间。

XNamespace ns = "sphinx";
XElement element = new XElement(ns + "docset");
登录后复制

要像示例中那样定义别名,请使用以下内容:

XNamespace ns = "http://url/for/sphinx";
XElement element = new XElement("container",
    new XAttribute(XNamespace.Xmlns + "sphinx", ns),
    new XElement(ns + "docset",
        new XElement(ns + "schema"),
            new XElement(ns + "field", new XAttribute("name", "subject")),
            new XElement(ns + "field", new XAttribute("name", "content")),
            new XElement(ns + "attr", 
                         new XAttribute("name", "published"),
                         new XAttribute("type", "timestamp"))));
登录后复制

此代码将生成所需的 XML结构:

<container xmlns:sphinx="http://url/for/sphinx">
  <sphinx:docset>
    <sphinx:schema />
    <sphinx:field name="subject" />
    <sphinx:field name="content" />
    <sphinx:attr name="published" type="timestamp" />
  </sphinx:docset>
</container>
登录后复制

以上是如何使用 XElement 生成带前缀节点的 XML 文档?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板