欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#创建xml

程序员文章站 2022-05-28 10:20:14
...

创建XMlC#创建xml

public ActionResult Contact()
    {
        //使用XDocument创建xml
        System.Xml.Linq.XDocument xdoc = new XDocument();
        XDeclaration xdec = new XDeclaration("1.0", "utf-8", "yes");
        xdoc.Declaration = xdec;

        //添加根节点
        XElement rootEle = new XElement("school");
        xdoc.Add(rootEle);

        //给根节点添加子节点
        XElement classEle = new XElement("class");
        XAttribute attrClass = new XAttribute("No", 1);
        classEle.Add(attrClass);
        rootEle.Add(classEle);

        //添加子节点下的元素
        XElement stuEle = new XElement("student");
        XAttribute atrStu = new XAttribute("sid", "20180101");
        stuEle.Add(atrStu);
        classEle.Add(stuEle);

        //保存文件
        xdoc.Save("d:\\TestB.xml");
        Console.WriteLine("创建xml文件ok");
        Console.ReadKey();

        return View();
    }
相关标签: 实例