如何从c#中的对象生成xml并对其进行格式化

本文关键字:xml 格式化 对象 | 更新日期: 2023-09-27 18:29:31

这里我试图从列表中格式化XML,但没有得到正确的格式。这是我的代码:

protected void GenerateXml(string url, List<string> listitems)  //generateXml
{
    XNamespace nsXhtml = "http://www.w3.org/1999/xhtml";
    XNamespace nsSitemap = "http://www.sitemaps.org/schemas/sitemap/0.9";
    XNamespace nsImage = "http://www.google.com/schemas/sitemap-image/1.1";
    var sitemap = new XDocument(new XDeclaration("1.0", "UTF-8", ""));
    var urlSet =
        new XElement(
            nsSitemap + "urlset",
            new XAttribute("xmlns", nsSitemap),
            new XAttribute(XNamespace.Xmlns + "image", nsXhtml),
            from urlNode in listitems
            select 
                new XElement(
                    nsSitemap + "url",
                    new XElement(nsSitemap + "loc", url),
                    new XElement(nsSitemap + "image",
                    new XElement(nsSitemap + "imageloc", urlNode))));
    sitemap.Add(urlSet);
    sitemap.Save(System.Web.HttpContext.Current.Server.MapPath("/Static/sitemaps/Sitemap-image.xml"));
}

然后得到这样的格式:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.w3.org/1999/xhtml">
  <url>
    <loc>http://example.com/intl/cars/new-models/the-new-s90</loc>
    <image> 
      <imageloc>http://example.com/static/images/volvo-logo-scaled.png</imageloc>
    </image>
  </url>
  <url>
    <loc>http://example.com/intl/cars/new-models/the-new-s90</loc>
    <image>
      <imageloc>http://assets.example.com/intl/~/media/images/galleries/new-cars/packshots/small/allnew_xc90-side_2.png</imageloc>
    </image>
  </url>
</urlset>

但我需要这种格式:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc>http://example.com/sample.html</loc>
    <image:image>
      <image:loc>http://example.com/image.jpg</image:loc>
    </image:image>
    <image:image>
      <image:loc>http://example.com/photo.jpg</image:loc>
    </image:image>
  </url> 
</urlset> 

有什么建议吗?

如何从c#中的对象生成xml并对其进行格式化

除了正确处理多个嵌套元素外,您从未将image前缀分配给应该具有它们的元素,您还可以继续使用全局名称空间:

new XElement(nsSitemap + "image",
   new XElement(nsSitemap + "imageloc", urlNode)

nsSitemap应为nsImage,"imageloc"应为"loc"。

对你的代码进行一些小的调整会让你得到你想要的:

protected void GenerateXml(string url, List<string> listitems)  //generateXml
{
    XNamespace nsSitemap = "http://www.sitemaps.org/schemas/sitemap/0.9";
    XNamespace nsImage = "http://www.google.com/schemas/sitemap-image/1.1";
    var sitemap = new XDocument(new XDeclaration("1.0", "UTF-8", ""));
    var urlSet = new XElement(nsSitemap + "urlset",
        new XAttribute("xmlns", nsSitemap),
        new XAttribute(XNamespace.Xmlns + "image", nsImage),
        new XElement(nsSitemap + "url",
        new XElement(nsSitemap + "loc", url),
        from urlNode in listitems
        select new XElement(nsImage + "image",
               new XElement(nsImage + "loc", urlNode)
           )));
        sitemap.Add(urlSet);          sitemap.Save(System.Web.HttpContext.Current.Server.MapPath("/Static/sitemaps/Sitemap-image.xml"));
}

注意以下变化:

new XAttribute(XNamespace.Xmlns + "image", nsImage);

这将正确地设置命名空间,以处理您的预期输出。

new XElement(nsImage + "image",
new XElement(nsImage + "loc", urlNode)

这将正确设置image前缀。

请注意"loc"answers"url"是如何在from查询之前移动到的。

上面的代码产生以下输出XML:

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc>http://example.com/sample.html</loc>
    <image:image>
      <image:loc>http://example.com/image.jpg</image:loc>
    </image:image>
    <image:image>
      <image:loc>http://example.com/photo.jpg</image:loc>
    </image:image>
  </url>
</urlset>