码迷,mamicode.com
首页 > Windows程序 > 详细

C# XML 输出xml根节点下的直接(第一级)子节点指定的属性的名字和值

时间:2016-10-17 09:11:23      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

1 xml文件

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <cultures>
 3 
 4     <daojia count="100">
 5         <book> 
 6             <name> 道德经</name>
 7             <author>老子</author>
 8         </book>
 9         <book > 
10             <name> 文始真经</name>
11             <author>关尹子</author>
12         </book>
13     </daojia>
14 
15     <fojia>
16         <book count="100">
17             <name>金刚经</name>
18             <author>释迦牟尼佛</author>
19         </book>
20         <book>
21             <name>地藏菩萨本愿经</name>
22             <author>地藏王菩萨</author>            
23         </book>
24     </fojia> 
25           
26 </cultures>

 

 

 

2 代码

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 using System.Xml.Linq;
 7 
 8 namespace ConsoleApplication8
 9 {
10     class Program
11     {
12         static void Main(string[] args)
13         {
14             //1.xml文件的格式必须是正确的
15             XDocument file = XDocument.Load("1.xml");
16             
17             //获取xml文件的根节点
18             XElement xmlRoot = file.Root;
19 
20             //获取根节点下的第一级子节点
21             IEnumerable<XElement> nodeFirst=xmlRoot.Elements();
22 
23             foreach (var item in nodeFirst)
24             {
25                 Console.WriteLine(item.Attribute("count").Name+" "+ item.Attribute("count").Value);
26             }
27 
28             Console.ReadKey();
29         }
30     }
31 }

 

 

 

3 效果

技术分享

C# XML 输出xml根节点下的直接(第一级)子节点指定的属性的名字和值

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5968531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!