• 在XML文档中替换元素名称的做法


    不要小看这个操作,其实是不太容易的。请注意,我们是要替换掉元素的名称,而不是元素的值。

    XML的内容在内存中是一个DOM树,要替换掉一个元素,其实是要新建一个元素,并且将原先元素的所有子元素都复制过来。在LINQ TO XML中用ReplaceWith来实现

    using System;
    using System.Linq;
    using System.Xml.Linq;

    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                XDocument doc = new XDocument(
                    new XElement("Tables"
                        , new XElement("Table"
                            , new XElement("Name", "Orders")
                            , new XElement("Owner", "chenxizhang"))
                        , new XElement("Table"
                            , new XElement("Name", "Customers")
                            , new XElement("Owner", "Allen"))
                        ));
                Console.WriteLine("原始的XML内容:");
                Console.WriteLine(doc);

                //改变Tables元素名称为Items
                Console.WriteLine("改变了根元素之后显示的效果:");
                XElement root = doc.Element("Tables");
                root.ReplaceWith(new XElement("Items", root.Elements("Table")));
                Console.WriteLine(doc);

                //改变Table元素名称为Item

                Console.WriteLine("改变了子元素之后显示的效果:");
                foreach (var item in doc.Elements("Items").Descendants().ToList())//这里一定要先ToList
                {
                    item.ReplaceWith(new XElement("Item", item.Descendants()));
                }
                Console.WriteLine(doc);

                Console.Read();
            }
        }
    }

     

    image

  • 相关阅读:
    Hibernate实现CRUD的例子小结
    AspnetPager表格标题排序功能
    Microsoft企业库配置问题
    orm比较
    外语培训网求鉴定
    DIV随滚动条滚动而滚动
    图片切换效果展示
    转载C#委托之多播委托( 二)
    LINQ 图解
    不用ajax调用搞后台小技巧
  • 原文地址:https://www.cnblogs.com/chenxizhang/p/1489277.html
Copyright © 2020-2023  润新知