1

我需要像这样生成xml:

<urlset xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"  xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
   <loc>http://blabla</loc>
   <video:video>
     <video:player allow_embed="yes">http://blablabla</video:player_loc>      
   </video:video>
</url>

我无法弄清楚使用命名空间的方法。我什至无法urlset正确创建元素,我正在尝试:

 XNamespace _defaultNamespace = "http://www.sitemaps.org/schemas/sitemap/0.9";
 XNamespace _videoNameSpace = "http://www.google.com/schemas/sitemap-video/1.1";

 new XElement("urlset",new XAttribute(_defaultNamespace+"video",_defaultNamespace))

它生成:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset p1:video="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:p1="http://www.sitemaps.org/schemas/sitemap/0.9">

那是p1什么?

4

1 回答 1

4

命名空间属性位于 xmlns 命名空间中,因此您应该 用于声明命名空间:XNamespace.Xmlns+ attributeName

XNamespace ns = "http://www.sitemaps.org/schemas/sitemap/0.9";
XNamespace video = "http://www.google.com/schemas/sitemap-video/1.1";
var urlset = new XElement(ns + "urlset",                
    new XAttribute(XNamespace.Xmlns + "video", video));

生产

<urlset xmlns:video="http://www.google.com/schemas/sitemap-video/1.1" 
        xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" />

完整的 xml 生成将如下所示:

var urlset = new XElement(ns + "urlset",                
    new XAttribute(XNamespace.Xmlns + "video", video),
    new XElement(ns + "url",
        new XElement(ns + "loc", "http:/blabla"),
        new XElement(video + "video",
            new XElement(video + "player",
                new XAttribute("allow_embed", "yes"),
                "http:/blabla"))));
于 2013-10-31T23:01:49.120 回答