首页 > 代码库 > Linq To XML 简单操作
Linq To XML 简单操作
加载xml文件和保存xml文件
XDocument doc = XDocument.Load(Server.MapPath("\\xmlfile\\Book.xml")); doc.Save(Server.MapPath("\\xmlfile\\BookBackup.xml"));
创建元素
XElement xe = new XElement("book",new XElement("bookname","asp.net mvc 4 高级编程"), new XElement("bookAuthor","Jon Galloway"), new XElement("publisher","清华大学出版社"));
给元素添加命名空间
XNamespace ns = "http://mvctest/root"; //用来给根节点添加命名空间 XNamespace ns1 = "http://mvctest/sub"; //用来给子元素添加命名空间 XElement xe = new XElement(ns+"book", new XElement(ns1+"bookname", "asp.net mvc 4 高级编程"), new XElement(ns1+"bookAuthor", "Jon Galloway"), new XElement(ns1+"publisher", "清华大学出版社"));
添加注释
XComment comment = new XComment("这里是注释"); doc.Add(comment); XElement xe = new XElement("book", new XElement("bookname", "asp.net mvc 4 高级编程"), new XComment("下面是书的作者和出版社"), new XElement("bookAuthor", "Jon Galloway"), new XElement("publisher", "清华大学出版社"));
添加节点的属性
XElement xe = new XElement("book",new XAttribute("isbn","123456789"), new XElement("bookname", "asp.net mvc 4 高级编程"), new XComment("下面是书的作者和出版社"), new XElement("bookAuthor", "Jon Galloway"), new XElement("publisher", "清华大学出版社"));
向原有的文档添加节点
XDocument doc = XDocument.Load(Server.MapPath("\\xmlfile\\Book.xml")); XElement xe = new XElement("book",new XElement("bookname", "asp.net mvc 4 高级编程"), new XElement("bookAuthor", "Jon Galloway"), new XElement("publisher", "清华大学出版社")); doc.Root.Add(xe); doc.Save(Server.MapPath("\\xmlfile\\Book.xml"));
查询
XDocument doc = XDocument.Load(Server.MapPath("\\xmlfile\\Book.xml")); var result = from book in doc.Descendants("bookname") where book.ToString().Contains("基础") select book.Value;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。