XML:Extensible Markup Language(可延伸標記語言 (XML))的縮寫,是用來定義其它語言的一種元語言,其前身是SGML(Standard Generalized Markup Language,標準通用標記語言 (SGML))。它沒有標籤集(tag set),也沒有文法規則(grammatical rule),但是它有句法規則(syntax rule)。任何XML文檔對任何類型的應用以及正確的解析都必須是良構的(well-formed),即每一個開啟的標籤都必須有匹配的結束標籤,不得含有次序顛倒的標籤,並且在語句構成上應符合技術規範的要求。XML文檔可以是有效(valid),但並非一定要求有效。所謂有效文檔是指其符合其文件類型定義(DTD)的文檔。如果一個文檔符合一個模式(schema)的規定,那麼這個文檔是"模式有效(schema
valid)"。
Skelta BPM.NET(全球第一.NET工作流程引擎) |
Visual WebGui (完美的使用者介面解決方案) |
List & Label(圖表報表產生控制項) |
DXperience Uni Premium 白金版(慧都獨家) |
XML檔案在儲存、交換和傳輸資料資訊上有著很方便處理,那麼今天這篇文章主要講一下用C#如何?對XML檔案的基本操作,如:建立xml檔案,增、刪、改、查xml的節點資訊。所使用的方法很基礎,方便易懂(用於自己的學習和記憶只需,同時也希望能夠給你帶來一些協助,如有不合適的地方歡迎大家批評指正)。
本文的主要模組為:
① :產生xml檔案
② :遍曆xml檔案的節點資訊
③ :修改xml檔案的節點資訊
④ :向xml檔案添加節點資訊
⑤ :刪除指定xml檔案的節點資訊
假設我們需要設計出這樣的一個xml檔案來儲存相應的資訊,如下所示:
<Computers>
<Computer ID="11111111" Description="Made in China">
<name>Lenovo</name>
<price>5000</price>
</Computer>
<Computer ID="2222222" Description="Made in USA">
<name>IBM</name>
<price>10000</price>
</Computer>
</Computers>
那麼如何產生這個xml檔案?又怎麼讀取這個xml檔案的節點資訊,以及如何對這個xml檔案的節點資訊作相應的操作?請看如下程式碼範例:
【註:因為我們要使用xml相關的文法和方法,所以一定要引入命名空間 System.Xml】
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Xml;
6
7 namespace OperateXML
8 {
9 class Program
10 {
11 static void Main(string[] args)
12 {
13 try
14 {
15 //xml檔案儲存體路徑
16 string myXMLFilePath = "E:\\MyComputers.xml";
17 //產生xml檔案
18 GenerateXMLFile(myXMLFilePath);
19 //遍曆xml檔案的資訊
20 GetXMLInformation(myXMLFilePath);
21 //修改xml檔案的資訊
22 ModifyXmlInformation(myXMLFilePath);
23 //向xml檔案添加節點資訊
24 AddXmlInformation(myXMLFilePath);
25 //刪除指定節點資訊
26 DeleteXmlInformation(myXMLFilePath);
27 }
28 catch (Exception ex)
29 {
30 Console.WriteLine(ex.ToString());
31 }
32 }
33
34 private static void GenerateXMLFile(string xmlFilePath)
35 {
36 try
37 {
38 //初始化一個xml執行個體
39 XmlDocument myXmlDoc = new XmlDocument();
40 //建立xml的根節點
41 XmlElement rootElement = myXmlDoc.CreateElement("Computers");
42 //將根節點加入到xml檔案中(AppendChild)
43 myXmlDoc.AppendChild(rootElement);
44
45 //初始化第一層的第一個子節點
46 XmlElement firstLevelElement1 = myXmlDoc.CreateElement("Computer");
47 //填充第一層的第一個子節點的屬性值(SetAttribute)
48 firstLevelElement1.SetAttribute("ID", "11111111");
49 firstLevelElement1.SetAttribute("Description", "Made in China");
50 //將第一層的第一個子節點加入到根節點下
51 rootElement.AppendChild(firstLevelElement1);
52 //初始化第二層的第一個子節點
53 XmlElement secondLevelElement11 = myXmlDoc.CreateElement("name");
54 //填充第二層的第一個子節點的值(InnerText)
55 secondLevelElement11.InnerText = "Lenovo";
56 firstLevelElement1.AppendChild(secondLevelElement11);
57 XmlElement secondLevelElement12 = myXmlDoc.CreateElement("price");
58 secondLevelElement12.InnerText = "5000";
59 firstLevelElement1.AppendChild(secondLevelElement12);
60
61
62 XmlElement firstLevelElement2 = myXmlDoc.CreateElement("Computer");
63 firstLevelElement2.SetAttribute("ID", "2222222");
64 firstLevelElement2.SetAttribute("Description", "Made in USA");
65 rootElement.AppendChild(firstLevelElement2);
66 XmlElement secondLevelElement21 = myXmlDoc.CreateElement("name");
67 secondLevelElement21.InnerText = "IBM";
68 firstLevelElement2.AppendChild(secondLevelElement21);
69 XmlElement secondLevelElement22 = myXmlDoc.CreateElement("price");
70 secondLevelElement22.InnerText = "10000";
71 firstLevelElement2.AppendChild(secondLevelElement22);
72
73 //將xml檔案儲存到指定的路徑下
74 myXmlDoc.Save(xmlFilePath);
75 }
76 catch (Exception ex)
77 {
78 Console.WriteLine(ex.ToString());
79 }
80 }
81
82 private static void GetXMLInformation(string xmlFilePath)
83 {
84 try
85 {
86 //初始化一個xml執行個體
87 XmlDocument myXmlDoc = new XmlDocument();
88 //載入xml檔案(參數為xml檔案的路徑)
89 myXmlDoc.Load(xmlFilePath);
90 //獲得第一個姓名匹配的節點(SelectSingleNode):此xml檔案的根節點
91 XmlNode rootNode = myXmlDoc.SelectSingleNode("Computers");
92 //分別獲得該節點的InnerXml和OuterXml資訊
93 string innerXmlInfo = rootNode.InnerXml.ToString();
94 string outerXmlInfo = rootNode.OuterXml.ToString();
95 //獲得該節點的子節點(即:該節點的第一層子節點)
96 XmlNodeList firstLevelNodeList = rootNode.ChildNodes;
97 foreach (XmlNode node in firstLevelNodeList)
98 {
99 //獲得該節點的屬性集合
100 XmlAttributeCollection attributeCol = node.Attributes;
101 foreach (XmlAttribute attri in attributeCol)
102 {
103 //擷取屬性名稱與屬性值
104 string name = attri.Name;
105 string value = attri.Value;
106 Console.WriteLine("{0} = {1}", name, value);
107 }
108
109 //判斷此節點是否還有子節點
110 if (node.HasChildNodes)
111 {
112 //擷取該節點的第一個子節點
113 XmlNode secondLevelNode1 = node.FirstChild;
114 //擷取該節點的名字
115 string name = secondLevelNode1.Name;
116 //擷取該節點的值(即:InnerText)
117 string innerText = secondLevelNode1.InnerText;
118 Console.WriteLine("{0} = {1}", name, innerText);
119
120 //擷取該節點的第二個子節點(用數組下標擷取)
121 XmlNode secondLevelNode2 = node.ChildNodes[1];
122 name = secondLevelNode2.Name;
123 innerText = secondLevelNode2.InnerText;
124 Console.WriteLine("{0} = {1}", name, innerText);
125 }
126 }
127 }
128 catch (Exception ex)
129 {
130 Console.WriteLine(ex.ToString());
131 }
132 }
133
134 private static void ModifyXmlInformation(string xmlFilePath)
135 {
136 try
137 {
138 XmlDocument myXmlDoc = new XmlDocument();
139 myXmlDoc.Load(xmlFilePath);
140 XmlNode rootNode = myXmlDoc.FirstChild;
141 XmlNodeList firstLevelNodeList = rootNode.ChildNodes;
142 foreach (XmlNode node in firstLevelNodeList)
143 {
144 //修改此節點的屬性值
145 if (node.Attributes["Description"].Value.Equals("Made in USA"))
146 {
147 node.Attributes["Description"].Value = "Made in HongKong";
148 }
149 }
150 //要想使對xml檔案所做的修改生效,必須執行以下Save方法
151 myXmlDoc.Save(xmlFilePath);
152 }
153 catch (Exception ex)
154 {
155 Console.WriteLine(ex.ToString());
156 }
157
158 }
159
160 private static void AddXmlInformation(string xmlFilePath)
161 {
162 try
163 {
164 XmlDocument myXmlDoc = new XmlDocument();
165 myXmlDoc.Load(xmlFilePath);
166 //添加一個帶有屬性的節點資訊
167 foreach (XmlNode node in myXmlDoc.FirstChild.ChildNodes)
168 {
169 XmlElement newElement = myXmlDoc.CreateElement("color");
170 newElement.InnerText = "black";
171 newElement.SetAttribute("IsMixed", "Yes");
172 node.AppendChild(newElement);
173 }
174 //儲存更改
175 myXmlDoc.Save(xmlFilePath);
176 }
177 catch (Exception ex)
178 {
179 Console.WriteLine(ex.ToString());
180 }
181 }
182
183 private static void DeleteXmlInformation(string xmlFilePath)
184 {
185 try
186 {
187 XmlDocument myXmlDoc = new XmlDocument();
188 myXmlDoc.Load(xmlFilePath);
189 foreach (XmlNode node in myXmlDoc.FirstChild.ChildNodes)
190 {
191 //記錄該節點下的最後一個子節點(簡稱:最後子節點)
192 XmlNode lastNode = node.LastChild;
193 //刪除最後子節點下的左右子節點
194 lastNode.RemoveAll();
195 //刪除最後子節點
196 node.RemoveChild(lastNode);
197 }
198 //儲存對xml檔案所做的修改
199 myXmlDoc.Save(xmlFilePath);
200 }
201 catch (Exception ex)
202 {
203 Console.WriteLine(ex.ToString());
204 }
205 }
206 }
207 }
208
上面的這個例子,首先是通過GenerateXMLFile方法在E盤建立出了我們預想的xml檔案;然後通過GetXMLInformation方法對剛剛產生的xml檔案進行了資訊的讀取;之後通過ModifyXmlInformation方法對xml檔案資訊作出相應的修改(<Computer ID="2222222" Description="Made in USA">
修改成為<Computer ID="2222222" Description="Made in HongKong">);再之後通過AddXmlInformation方法向xml檔案中添加了一個帶有屬性值的color節點;最後通過DeleteXmlInformation方法將剛剛添加上的color節點刪除掉。至此完成了對xml檔案的基本操作:建立、讀取、修改、添加、刪除。
【注1:想要將對xml檔案所做的任何修改生效的話,必須調用Save方法,否則我們所做的修改不會儲存】
【注2:我們在建立節點的時候用的是XmlElement,但是讀取節點資訊的時候卻用的是XmlNode,這裡強調一點:XmlElement是XmlNode的繼承,可以調用更多的方法
實現相應所需的功能】
最後簡單集中的總結一下對xml進行操作的基本方法,如下所示:
//所需要添加的命名空間
using System.Xml;
//初始化一個xml執行個體
XmlDocument xml=new XmlDocument();
//匯入指定xml檔案
xml.Load(“xml檔案路徑path”);
//指定一個節點
XmlNode root=xml.SelectSingleNode("節點名稱");
//擷取節點下所有直接子節點
XmlNodeList childlist=root.ChildNodes;
//判斷該節點下是否有子節點
root.HasChildNodes;
//擷取同名同級節點集合
XmlNodeList nodelist=xml.SelectNodes("節點名稱");
//產生一個新節點
XmlElement node=xml.CreateElement("節點名稱");
//將節點加到指定節點下,作為其子節點
root.AppendChild(node);
//將節點加到指定節點下某個子節點前
root.InsertBefore(node,root.ChildeNodes[i]);
//為指定節點的建立屬性並賦值
node.SetAttribute("id","11111");
//為指定節點添加子節點
root.AppendChild(node);
//擷取指定節點的指定屬性值
string id=node.Attributes["id"].Value;
//擷取指定節點中的文本
string content=node.InnerText;
//儲存XML檔案
xml.Save(“xml檔案儲存體的路徑path”)