您的位置:首页 > 其它

创建一个XML文件

2016-11-17 20:38 232 查看
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Xml;

namespace 使用传统方法创建XML

{

    class Program

    {

        static void Main(string[] args)

        {

            // 命名空间:System.XML;

            // 类库:XmlDocument   文档

            //      XmlElement      元素

            //      XmlAttribute    属性

            XmlDocument xdoc = new XmlDocument();

            // 所有的元素使用文档节点创建

            XmlDeclaration xdec = xdoc.CreateXmlDeclaration("1.0", "gb2312", null);

            xdoc.AppendChild(xdec);

            XmlElement xele = xdoc.CreateElement("root");

            xdoc.AppendChild(xele);

            XmlAttribute xAttr = xdoc.CreateAttribute("id");

            xAttr.Value = "123456";

            XmlText txt = xdoc.CreateTextNode("我是一个文本节点");

            xele.AppendChild(txt);

            xele.Attributes.Append(xAttr);

            xdoc.Save("1.xml");

            Console.WriteLine("创建成功!");

            Console.ReadKey();

        }

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: