LINQToXML类详细分析

本文向大家介绍LINQ To XML类,可能好多人还不了解LINQ To XML类,没有关系,看完本文你肯定有不少收获,希望本文能教会你更多东西。

LINQ To XML类

下面重点学习三个类:XDocument,XElement,Xattribute

1.LINQ To XML类——XDocument类:表示一个 XML 文档。XDocument可以包含以下元素:
◆一个 XDeclaration 对象。XDeclaration 使您能够指定 XML 声明的相关部分: XML 版本、文档的编码,以及 XML 文档是否是独立的。
◆一个 XElement 对象。 这是 XML 文档的根节点。
◆任意数目的 XProcessingInstruction 对象。 处理指令将信息传递给处理 XML 的应用程序。
◆任意数目的 XComment 对象。 注释将与根元素同级。 XComment 对象不能是列表中的第一个参数,因为 XML 文档以注释开头无效。
◆一个用于 DTD 的 XDocumentType。

用XDocument创建XML文件

 
 
 
  1. XDocument d = new XDocument( new XDeclaration("1.0", "utf-8", "true"),  
  2. new XComment("This is a comment."),  
  3. new XProcessingInstruction("xml-stylesheet", 
    "href='mystyle.css' title='Compact' type='text/css'"),  
  4. new XElement("Pubs",  
  5. new XElement("Book",  
  6. new XElement("Title", "Artifacts of Roman Civilization"),  
  7. new XElement("Author", "Moreno, Jordao")  
  8. )   
  9. )   
  10. );  
  11. Console.WriteLine(d.Declaration );  
  12. Console.WriteLine(d);  
  13. //XML文件  
  14.  version="1.0" encoding="utf-8" standalone="true"?> 
  15.  
  16.  href='mystyle.css' title='Compact' type='text/css'?> 
  17.  
  18.  
  19. </strong>Artifacts of Roman Civilization<strong> 
  20. Moreno, Jordao 
  21.  
  22.  

2.LINQ To XML类——XElement类:表示一个 XML 元素。XDocument 可以包含以下元素:
◆Xelement
◆Xcomment
◆XprocessingInstruction
◆XText

用XElement创建XML文件

 
 
 
  1. XElement xml1 = new XElement("Root",  
  2. new XElement("Node1", 1),  
  3. new XElement("Node2", 2),  
  4. new XElement("Node3", 3),  
  5. new XElement("Node4", 4),  
  6. new XElement("Node5", 5),  
  7. new XElement("Node6", 6)  
  8. );  
  9. XElement xml2 = new XElement("Root",  
  10. from el in xml1.Elements()  
  11. where ((int)el >= 3 && (int)el <= 5)  
  12. select el  
  13. );  
  14. Console.WriteLine(xml2);  
  15. //XML文件  
  16. <Root> 
  17. 3 
  18. 4 
  19. 5 
  20.  

3.LINQ To XML类——XAttribute类:属性是与元素关联的名称/值对。 XAttribute 类表示 XML 属性。

属性与元素之间有些区别。XAttribute 对象不是 XML 树中的节点。 它们是与 XML 元素关联的名称/值对。 与文档对象模型 (DOM) 相比,这更加贴切地反映了 XML 结构。 虽然 XAttribute 对象实际上不是 XML 树的节点,但使用 XAttribute 对象与使用 XElement 对象非常相似。

 
 
 
  1. XElement phone = new XElement("Phone",  
  2. new XAttribute("Type", "Home"),  
  3. "555-555-5555");  
  4. Console.WriteLine(phone); 

当前题目:LINQToXML类详细分析
标题链接:http://www.csdahua.cn/qtweb/news24/414124.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网