经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 程序设计 » C# » 查看文章
C# -- 使用XmlDocument或XDocument创建xml文件
来源:cnblogs  作者:在代码的世界里游走  时间:2018/10/18 9:08:14  对本文有异议

使用XmlDocument或XDocument创建xml文件

需引用:System.Xml; System.Xml.Linq;

1.使用XmlDocument创建xml(入门案例)

  1. 1 static void Main(string[] args)
  2. 2 {
  3. 3 //使用XmlDocument创建xml
  4. 4 XmlDocument xmldoc = new XmlDocument();
  5. 5 XmlDeclaration xmldec = xmldoc.CreateXmlDeclaration("1.0", "utf-8", "yes");
  6. 6 xmldoc.AppendChild(xmldec);
  7. 7
  8. 8 //添加根节点
  9. 9 XmlElement rootElement = xmldoc.CreateElement("school");
  10. 10 xmldoc.AppendChild(rootElement);
  11. 11
  12. 12 //添加根节点下的子节点元素
  13. 13 XmlElement classElement = xmldoc.CreateElement("class");
  14. 14 rootElement.AppendChild(classElement);
  15. 15 XmlAttribute atrrClass = xmldoc.CreateAttribute("No");
  16. 16 atrrClass.Value = "1";
  17. 17 classElement.Attributes.Append(atrrClass);
  18. 18
  19. 19 //添加子节点下的元素
  20. 20 XmlElement stuElement = xmldoc.CreateElement("student");
  21. 21 classElement.AppendChild(stuElement);
  22. 22 XmlAttribute attrStu = xmldoc.CreateAttribute("sid");
  23. 23 attrStu.Value = "20180101";
  24. 24 stuElement.Attributes.Append(attrStu);
  25. 25
  26. 26 //保存文件
  27. 27 xmldoc.Save(@"d:\zzz\TestA.xml");
  28. 28 Console.WriteLine("创建xml文件ok!");
  29. 29 Console.ReadKey();
  30. 30
  31. 31 }


使用XmlDocument创建的xml文件:

 

2. 使用XDocument创建xml(入门案例)

  1. 1 static void Main(string[] args)
  2. 2 {
  3. 3 //使用XDocument创建xml
  4. 4 System.Xml.Linq.XDocument xdoc = new XDocument();
  5. 5 XDeclaration xdec = new XDeclaration("1.0", "utf-8", "yes");
  6. 6 xdoc.Declaration = xdec;
  7. 7
  8. 8 //添加根节点
  9. 9 XElement rootEle = new XElement("school");
  10. 10 xdoc.Add(rootEle);
  11. 11
  12. 12 //给根节点添加子节点
  13. 13 XElement classEle = new XElement("class");
  14. 14 XAttribute attrClass = new XAttribute("No", 1);
  15. 15 classEle.Add(attrClass);
  16. 16 rootEle.Add(classEle);
  17. 17
  18. 18 //添加子节点下的元素
  19. 19 XElement stuEle = new XElement("student");
  20. 20 XAttribute atrStu = new XAttribute("sid", "20180101");
  21. 21 stuEle.Add(atrStu);
  22. 22 classEle.Add(stuEle);
  23. 23
  24. 24 //保存文件
  25. 25 xdoc.Save("d:\\zzz\\TestB.xml");
  26. 26 Console.WriteLine("创建xml文件ok");
  27. 27 Console.ReadKey();
  28. 28 }

使用XDocument创建的Xml文件:

 

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号