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.
答案:
XNamespace ns = "sphinx"; XElement element = new XElement(ns + "docset");
答案:
使用LINQ to XML,我們可以輕鬆地在元素上新增命名空間。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"))));
<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中文網其他相關文章!