在C#中操作XML .
用的是一種很笨的方法,但可以幫助初學者瞭解訪問XML節點的過程。
已知有一個XML檔案(bookstore.xml)如下:
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
-->1 xml version="1.0" encoding="gb2312"?>
2 <bookstore>
3 <book genre="fantasy" ISBN="2-3631-4">
4 <title>Oberon's Legacytitle>
5 <author>Corets, Evaauthor>
6 <price>5.95price>
7 book>
8 bookstore>
1、往
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 XmlDocument xmlDoc=new XmlDocument();
2 xmlDoc.Load("bookstore.xml");
3 XmlNode root=xmlDoc.SelectSingleNode("bookstore");//查詢
4 XmlElement xe1=xmlDoc.CreateElement("book");//建立一個節點
5 xe1.SetAttribute("genre","李贊紅");//設定該節點genre屬性
6 xe1.SetAttribute("ISBN","2-3631-4");//設定該節點ISBN屬性
7 XmlElement xesub1=xmlDoc.CreateElement("title");
8 xesub1.InnerText="CS從入門到精通";//設定文字節點
9 xe1.AppendChild(xesub1);//新增到節點中
10 XmlElement xesub2=xmlDoc.CreateElement("author");
11 xesub2.InnerText="候捷";
12 xe1.AppendChild(xesub2);
13 XmlElement xesub3=xmlDoc.CreateElement("price");
14 xesub3.InnerText="58.3";
15 xe1.AppendChild(xesub3);
16 root.AppendChild(xe1);//新增到節點中
17 xmlDoc.Save("bookstore.xml");
//================
結果為:
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 xml version="1.0" encoding="gb2312"?>
2 <bookstore>
3 <book genre="fantasy" ISBN="2-3631-4">
4 <title>Oberon's Legacytitle>
5 <author>Corets, Evaauthor>
6 <price>5.95price>
7 book>
8 <book genre="李贊紅" ISBN="2-3631-4">
9 <title>CS從入門到精通title>
10 <author>候捷author>
11 <price>58.3price>
12 book>
13 bookstore>
2、修改節點:將genre屬性值為“李贊紅“的節點的genre值改為“update李贊紅”,將該節點的子節點
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 //獲取bookstore節點的所有子節點
2 XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;
3 foreach(XmlNode xn in nodeList)//遍歷所有子節點
4 {
5 XmlElement xe=(XmlElement)xn;//將子節點型別轉換為XmlElement型別
6 if(xe.GetAttribute("genre")=="李贊紅")//如果genre屬性值為“李贊紅”
7 {
8 xe.SetAttribute("genre","update李贊紅");//則修改該屬性為“update李贊紅”
9 XmlNodeList nls=xe.ChildNodes;//繼續獲取xe子節點的所有子節點
10 foreach(XmlNode xn1 in nls)//遍歷
11 {
12 XmlElement xe2=(XmlElement)xn1;//轉換型別
13 if(xe2.Name=="author")//如果找到
14 {
15 xe2.InnerText="亞勝";//則修改
16 break;//找到退出來就可以了
17 }
18 }
19 break;
20 }
21 }
22 xmlDoc.Save("bookstore.xml");//儲存。
//=================
最後結果為:
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 xml version="1.0" encoding="gb2312"?>
2 <bookstore>
3 <book genre="fantasy" ISBN="2-3631-4">
4 <title>Oberon's Legacytitle>
5 <author>Corets, Evaauthor>
6 <price>5.95price>
7 book>
8 <book genre="update李贊紅" ISBN="2-3631-4">
9 <title>CS從入門到精通title>
10 <author>亞勝author>
11 <price>58.3price>
12 book>
13 bookstore>
3、刪除
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 XmlNodeList xnl=xmlDoc.SelectSingleNode("bookstore").ChildNodes;
2 foreach(XmlNode xn in xnl)
3 {
4 XmlElement xe=(XmlElement)xn;
5 if(xe.GetAttribute("genre")=="fantasy")
6 {
7 xe.RemoveAttribute("genre");//刪除genre屬性
8 }
9 else if(xe.GetAttribute("genre")=="update李贊紅")
10 {
11 xe.RemoveAll();//刪除該節點的全部內容
12 }
13 }
14 xmlDoc.Save("bookstore.xml");
//====================
最後結果為:
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 xml version="1.0" encoding="gb2312"?>
2 <bookstore>
3 <book ISBN="2-3631-4">
4 <title>Oberon's Legacytitle>
5 <author>Corets, Evaauthor>
6 <price>5.95price>
7 book>
8 <book>
9 book>
10 bookstore>
4、顯示所有資料。
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
--> 1 XmlNode xn=xmlDoc.SelectSingleNode("bookstore");
2 XmlNodeList xnl=xn.ChildNodes;
3 foreach(XmlNode xnf in xnl)
4 {
5 XmlElement xe=(XmlElement)xnf;
6 Console.WriteLine(xe.GetAttribute("genre"));//顯示屬性值
7 Console.WriteLine(xe.GetAttribute("ISBN"));
8 XmlNodeList xnf1=xe.ChildNodes;
9 foreach(XmlNode xn2 in xnf1)
10 {
11 Console.WriteLine(xn2.InnerText);//顯示子節點點文字
12 }
13 }
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20200170/viewspace-739830/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- C# 操作xml(轉)C#XML
- C#:XML操作(簡單)C#XML
- C#操作XML方法集合C#XML
- .net中xml基本操作XML
- C#操作XML的完整例子——XmlDocument篇C#XML
- 應用SQLServer For XML 生成XML避免在C# 拼字串SQLServerXMLC#字串
- XML操作XML
- 操作XMLXML
- xml 操作XML
- C#中操作IIS 7.0C#
- C# XML解析C#XML
- SQL Server中操作XML型別資料SQLServerXML型別
- JAVA操作XMLJavaXML
- C#中PDF文件操作類C#
- C#中URL的操作類C#
- c#中的insert操作C#
- C#中索引器的操作C#索引
- C#不使用DataSet操作XML,XmlDocument讀寫xml所有節點及讀取xml節點的資料總結C#XML
- C#讀取XMLC#XML
- C# 讀寫xmlC#XML
- Spring中基於XML方式的AOP操作SpringXML
- java中四種操作xml方式的比較JavaXML
- 用c#生成xml字串及解析xml字串C#XML字串
- 在JavaScript中操作CookieJavaScriptCookie
- 在C#中使用官方驅動操作MongoDBC#MongoDB
- C# 之 Linq to XmlC#XML
- C# 讀 xml註釋C#XML
- C# 建立XML檔案C#XML
- C#解析XML檔案C#XML
- C#基礎系列:Linq to Xml讀寫xmlC#XML
- 在c#中呼叫confirmC#
- PHP操作xml詳解PHPXML
- Asp.net 操作XMLASP.NETXML
- 文摘:在EJB中讀取XML配置檔案XML
- 在.NET中操作XmlDocument (轉)XML
- SQL Server 中對XML資料的五種基本操作SQLServerXML
- PHP xml 轉陣列 陣列轉 xml 操作PHPXML陣列
- Python操作xml檔案(xml.etree.ElementTree)PythonXML