首页 > 代码库 > C# XML 输出xml根节点的第二级子节点的名字

C# XML 输出xml根节点的第二级子节点的名字

1 xml

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <cultures>
 3     <daojia>
 4         <book> 
 5             <name> 道德经</name>
 6             <author>老子</author>
 7         </book>
 8         <book> 
 9             <name> 文始真经</name>
10             <author>关尹子</author>
11         </book>
12     </daojia>
13 </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                 //nodesecond是第一级子节点的子节点
26                 var nodeSecond= item.Elements();
27                 foreach (var node in nodeSecond)
28                 {
29                     Console.WriteLine(node.Name);
30                 }
31             }
32 
33             Console.ReadKey();
34         }
35     }
36 }

 

 

3 效果

技术分享

C# XML 输出xml根节点的第二级子节点的名字