LINQ to XML提供了更方便的讀寫xml方式。前幾篇文章的評論中總有朋友提,你為啥不用linq to xml?現在到時候了,linq to xml出場了。
.Net中的System.Xml.Linq命名空間提供了linq to xml的支援。這個命名空間中的XDocument,XElement以及XText,XAttribute提供了讀寫xml文件的關鍵方法。
1. 使用linq to xml寫xml:
使用XDocument的建構子可以建構一個Xml文件物件;使用XElement物件可以建構一個xml節點元素,使用XAttribute建構子可以建構元素的屬性;使用XText建構子可以建構節點內的文字。
如下實例程式碼:
class Program { static void Main(string[] args) { var xDoc = new XDocument(new XElement( "root", new XElement("dog", new XText("dog said black is a beautify color"), new XAttribute("color", "black")), new XElement("cat"), new XElement("pig", "pig is great"))); //xDoc输出xml的encoding是系统默认编码,对于简体中文操作系统是gb2312 //默认是缩进格式化的xml,而无须格式化设置 xDoc.Save(Console.Out); Console.Read(); } }
上面程式碼將輸出如下Xml:
##
<?xml version="1.0" encoding="gb2312"?> <root> <dog color="black">dog said black is a beautify color</dog> <cat /> <pig>pig is great</pig> </root>
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的所有字節點,並列印出來,如下程式碼:class Program { static void Main(string[] args) { var xDoc = new XDocument(new XElement( "root", new XElement("dog", new XText("dog said black is a beautify color"), new XAttribute("color", "black")), new XElement("cat"), new XElement("pig", "pig is great"))); //xDoc输出xml的encoding是系统默认编码,对于简体中文操作系统是gb2312 //默认是缩进格式化的xml,而无须格式化设置 xDoc.Save(Console.Out); Console.WriteLine(); var query = from item in xDoc.Element( "root").Elements() select new { TypeName = item.Name, Saying = item.Value, Color = item.Attribute("color") == null?(string)null:item.Attribute("color").Value }; foreach (var item in query) { Console.WriteLine("{0} 's color is {1},{0} said {2}",item.TypeName,item.Color??"Unknown",item.Saying??"nothing"); } Console.Read(); } }
#3. Linq to xml簡單的應用程式
#應用程式需求: 讀取部落格花園的rss,然後在頁面上輸出最新的10篇部落格資訊 實作重點: 透過XDocument的Load靜態方法載入Xml,透過linq查詢最新10個資料程式碼如下:<%@ Page Language="C#" AutoEventWireup="true" %> <script runat="server"> protected override void OnLoad(EventArgs e) { //实际应用,通过读取博客园的RSS生成Html代码显示最新的博客列表 //使用XDocument的Load静态方法载入Xml //玉开技术博客 http://www.php.cn/ var rssXDoc = XDocument.Load("http://www.cnblogs.com/rss"); //使用linq to xml查询前10条新博客 var queryBlogs = (from blog in rssXDoc.Descendants("item") select new { Title = blog.Element("title").Value, Url = blog.Element("link").Value, PostTime = DateTime.Parse(blog.Element("pubDate").Value) }).Take(20); repeaterBlogs.DataSource = queryBlogs; repeaterBlogs.DataBind(); base.OnLoad(e); } </script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Linq to Xml 实例</title> </head> <body> <ol> <asp:Repeater ID="repeaterBlogs" EnableViewState="false" runat="server"> <ItemTemplate> <li><span style="float: right"> <%#Eval("PostTime") %></span><a href="<%#Eval("Url") %>"><%#Eval("Title") %></a></li> </ItemTemplate> </asp:Repeater> </ol> </body> </html>C#的發展讓讀寫Xml越來越簡單了。 C#處理Xml的相關隨筆:1.透過XmlDocument讀寫Xml文件2.使用XmlReader讀Xml,使用XmlWriter寫Xml# 3.使用Linq to xml存取XML4.透過XmlScheme定義固定格式xml文件5.Xml序列化或反序列化類別6.透過XPath尋找Xml節點7.透過Xslt轉換Xml格式