gpt4 book ai didi

解析linq to xml操作XML的示例分析

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 33 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章解析linq to xml操作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> 。

可以看出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的所有字节点,并打印出来,如下代码:

复制代码代码如下

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         var rssXDoc = XDocument.Load("//www.zzvips.com");         //使用linq to xml查询前10条新博客         var queryBlogs = (from blog in rssXDoc.Descendants("item")                           select new                           {                               /> C#的发展让读写Xml越来越简单了.

最后此篇关于解析linq to xml操作XML的示例分析的文章就讲到这里了,如果你想了解更多关于解析linq to xml操作XML的示例分析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com