C# 添加xml节点多了xmlns属性问题

当父节点有xmlns属性时,动态创建子节点,会默认增加一个 xmlns=“” 的节点属性值。

原有

doc.CreateElement("son-node");

改为

doc.CreateElement("son-node", doc.DocumentElement.NamespaceURI);

C# 添加xml节点多了xmlns属性问题

参考百度站点地图文件sitemap.xml

<?xml version="1.0" encoding="UTF-8"?>
    <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:mobile="http://www.baidu.com/schemas/sitemap-mobile/1/">
    <url>
    <loc>http://m.example.com/index.html</loc>
    <mobile:mobile type="mobile" />
    <lastmod>2009-12-14</lastmod>
    <changefreq>daily</changefreq>
    <priority>0.8</priority>
    </url>
    </urlset>

上一篇:Snowflake Snow Snowflakes - poj 3349 (hash函数)


下一篇:【iCore1S 双核心板_ARM】例程十:SYSTICK定时器实验——定时点亮LED