美文网首页
(二)写入XML的两种方式

(二)写入XML的两种方式

作者: 搬搬搬 | 来源:发表于2018-07-09 13:13 被阅读0次

    1.XmlDocument类,标准的Dom方式

    XmlDocument xDoc=new XmlDocument();

    XmlElement xRoot=xdoc.CreateElment("Root");

    xDoc.ApendChild(xRoot);

    XmlAttribute xArr=xdoc.CreateAttribute("name");

    xArr.value="zxd";

    xRoot.Attributes.Apend(xArr);

    xDoc.Save("exec.xml");

    2.XDocument类

    XDocument xDoc = new XDocument();

    XElement xRoot = new XElement("Root");

    xDoc.Add(xRoot);

    XElement xPerson=new XElement("Person");

    xPerson.SetAttributeValue("name","zxd");

    xRoot.add("xPerson");

    xDoc.Save("exec.xml");

    相关文章

      网友评论

          本文标题:(二)写入XML的两种方式

          本文链接:https://www.haomeiwen.com/subject/yfizuftx.html