博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# XML读写示例
阅读量:6004 次
发布时间:2019-06-20

本文共 1793 字,大约阅读时间需要 5 分钟。

1 static void Main(string[] args) 2         { 3             // 读XML示例 4             XmlDocument xml = new XmlDocument(); 5             xml.Load("../../XMLFile1.xml"); 6  7             XmlAttributeCollection xac = xml.SelectSingleNode("Article").FirstChild.Attributes; 8             Console.WriteLine(xac[0].Value); // 访问属性值用Value 9 10             XmlNode node = xml.SelectSingleNode("Article/author");11             Console.WriteLine(node.InnerText); // 访问节点值用InnerText12 13             //Console.Write(xml.InnerXml); // 整个xml内容14 15             // 写XML示例16             XmlDocument xml2 = new XmlDocument();17             // 声明18             XmlDeclaration decl = xml2.CreateXmlDeclaration("1.0", "utf-8", null);19             xml2.AppendChild(decl);20             // 根节点21             XmlNode root = xml2.CreateElement("Books");22             xml2.AppendChild(root);23             // 元素节点24             XmlNode book = xml2.CreateElement("Book");   25             XmlElement title = xml2.CreateElement("Title");   26             title.InnerText = "SQL Server";   27             book.AppendChild(title);28             XmlElement isbn = xml2.CreateElement("ISBN");   29             isbn.InnerText = "444444";   30             book.AppendChild(isbn);31             XmlElement author = xml2.CreateElement("Author");   32             author.InnerText = "jia";   33             book.AppendChild(author);34             XmlElement price = xml2.CreateElement("Price");   35             price.InnerText = "120";   36             price.SetAttribute("Unit", "___FCKpd___");   37             book.AppendChild(price);   38             root.AppendChild(book);   39 40             //Console.Write(xml2.InnerXml);41             xml2.Save("xml2.xml");42         }

 

转载于:https://www.cnblogs.com/aoun/p/4951240.html

你可能感兴趣的文章
vim配置及快捷键
查看>>
2018省赛赛第一次训练题解和ac代码
查看>>
UWP Composition API - 锁定列的FlexGrid
查看>>
[转载] win10进行端口转发
查看>>
利用JavaScript jQuery实现图片无限循环轮播(不借助于轮播插件)-----转载
查看>>
从零开始搭建vue项目 请求拦截器 响应拦截器
查看>>
ajax实现动态下拉框
查看>>
HDU3257 Hello World!【打印图案+位运算】
查看>>
jquery 选择器
查看>>
The secret code
查看>>
Makefile 多目录自动编译
查看>>
学习笔记:Oracle dul数据挖掘 导出Oracle11G数据文件坏块中表中
查看>>
统一Matlab下不同子图的色标colorbar
查看>>
Linux 进程间通信(二) 管道
查看>>
Ajax保留浏览器历史的两种解决方案(Hash&Pjax)
查看>>
深入浅出JQuery (二) 选择器
查看>>
CI框架 -- 驱动器
查看>>
FastMQ V0.2.0 stable版发布
查看>>
对象复制
查看>>
Mongodb内嵌数组的完全匹配查询
查看>>