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中文网其他相关文章!