Linq to xml操作XML

来源:互联网 发布:大数据降维 编辑:程序博客网 时间:2024/05/21 07:02

.Net中的System.Xml.Linq命名空间提供了linq to xml的支持。这个命名空间中的XDocument,XElement以及XText,XAttribute提供了读写xml文档的关键方法。

1. 使用linq to xml写xml:

使用XDocument的构造函数可以构造一个Xml文档对象;使用XElement对象可以构造一个xml节点元素,使用XAttribute构造函数可以构造元素的属性;使用XText构造函数可以构造节点内的文本。

如下实例代码:

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var xDoc = new XDocument(new XElement( "root",
  6. new XElement("dog",
  7. new XText("dog said black is a beautify color"),
  8. new XAttribute("color", "black")),
  9. new XElement("cat"),
  10. new XElement("pig", "pig is great")));
  11. //xDoc输出xml的encoding是系统默认编码,对于简体中文操作系统是gb2312
  12. //默认是缩进格式化的xml,而无须格式化设置
  13. xDoc.Save(Console.Out);
  14. Console.Read();
  15. }
  16. }

上面代码将输出如下Xml:

  1. <?xml version="1.0" encoding="gb2312"?>
  2. <root>
  3. <dog color="black">dog said black is a beautify color</dog>
  4. <cat />
  5. <pig>pig is great</pig>
  6. </root>

可以看出linq to xml比XmlDocument和XmlWriter要方便很多。

2. 使用linq to xml 读取xml

Linq是从集合中查询对象,在linq to xml中的集合是通过XElement的Elements(),Elements(string name),以及Descendants、DescendantsAndSelf、Ancestors、AncestorsAndSelf的几个重载方法中获得。

获得XElement集合之后,可以通过XElement的Attribute(string name)方法获得元素的属性值,可以通过XElement的Value属性获得节点的文本值;使用linq就可以方便的做查询,做筛选排序了

还是上例中的xml,我们要读取root的所有字节点,并打印出来,如下代码:

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. var xDoc = new XDocument(new XElement( "root",
  6. new XElement("dog",
  7. new XText("dog said black is a beautify color"),
  8. new XAttribute("color", "black")),
  9. new XElement("cat"),
  10. new XElement("pig", "pig is great")));
  11. //xDoc输出xml的encoding是系统默认编码,对于简体中文操作系统是gb2312
  12. //默认是缩进格式化的xml,而无须格式化设置
  13. xDoc.Save(Console.Out);
  14. Console.WriteLine();
  15. var query = from item in xDoc.Element( "root").Elements()
  16. select new
  17. {
  18. TypeName = item.Name,
  19. Saying = item.Value,
  20. Color = item.Attribute("color") == null?(string)null:item.Attribute("color").Value
  21. };
  22. foreach (var item in query)
  23. {
  24. Console.WriteLine("{0} 's color is {1},{0} said {2}",item.TypeName,item.Color??"Unknown",item.Saying??"nothing");
  25. }
  26. Console.Read();
  27. }
  28. }

3. Linq to xml简单的应用

应用需求: 读取博客园的rss,然后在页面上输出最新的10篇博客信息

实现要点: 通过XDocument的Load静态方法载入Xml,通过linq查询最新10条数据

代码如下:

  1. <%@ Page Language="C#" AutoEventWireup="true" %>
  2. <script runat="server">
  3. protected override void OnLoad(EventArgs e)
  4. {
  5. //实际应用,通过读取博客园的RSS生成Html代码显示最新的博客列表
  6. //使用XDocument的Load静态方法载入Xml
  7. //玉开技术博客 http://www.cnblogs.com/yukaizhao
  8. var rssXDoc = XDocument.Load("http://www.cnblogs.com/rss");
  9. //使用linq to xml查询前10条新博客
  10. var queryBlogs = (from blog in rssXDoc.Descendants("item")
  11. select new
  12. {
  13. Title = blog.Element("title").Value,
  14. Url = blog.Element("link").Value,
  15. PostTime = DateTime.Parse(blog.Element("pubDate").Value)
  16. }).Take(20);
  17. repeaterBlogs.DataSource = queryBlogs;
  18. repeaterBlogs.DataBind();
  19. base.OnLoad(e);
  20. }
  21. </script>
  22. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  23. <html xmlns="http://www.w3.org/1999/xhtml">
  24. <head runat="server">
  25. <title>Linq to Xml 实例</title>
  26. </head>
  27. <body>
  28. <ol>
  29. <asp:Repeater ID="repeaterBlogs" EnableViewState="false" runat="server">
  30. <ItemTemplate>
  31. <li><span style="float: right">
  32. <%#Eval("PostTime") %></span><a href="<%#Eval("Url") %>"><%#Eval("Title") %></a></li>
  33. </ItemTemplate>
  34. </asp:Repeater>
  35. </ol>
  36. </body>
  37. </html>