已知有一個XML文檔(bookstore.XML)如下:
<?XML version="1.0" encoding="gb2312"?>
<bookstore>
<book genre="fantasy" ISBN="2-3631-4">
<title>Oberons Legacy</title>
<author>Corets, Eva</author>
<price>5.95</price>
</book>
</bookstore>
1、往<bookstore>節點中插入一個<book>節點:
XmlDocument xmlDoc=new XMLDocument();
xmlDoc.Load("bookstore.XML");
XmlNode root=XMLDoc.SelectSingleNode("bookstore");//查找<bookstore>
XmlElement xe1=XMLDoc.CreateElement("book");//建立一個<book>節點
xe1.SetAttribute("genre","李贊紅");//配置該節點genre屬性
xe1.SetAttribute("ISBN","2-3631-4");//配置該節點ISBN屬性
XmlElement xesub1=XMLDoc.CreateElement("title");
xesub1.InnerText="CS從入門到知曉 ";//配置文本節點
xe1.AppendChild(xesub1);//添加到<book>節點中
XmlElement xesub2=XMLDoc.CreateElement("author");
xesub2.InnerText="候捷";
xe1.AppendChild(xesub2);
XmlElement xesub3=XMLDoc.CreateElement("price");
xesub3.InnerText="58.3";
xe1.AppendChild(xesub3);
root.AppendChild(xe1);//添加到<bookstore>節點中
xmlDoc.Save("bookstore.XML");
//================
結果為:
<?XML version="1.0" encoding="gb2312"?>
<bookstore>
<book genre="fantasy" ISBN="2-3631-4">
<title>Oberons Legacy</title>
<author>Corets, Eva</author>
<price>5.95</price>
</book>
<book genre="李贊紅" ISBN="2-3631-4">
<title>CS從入門到知曉 </title>
<author>候捷</author>
<price>58.3</price>
</book>
</bookstore>
2、修正節點:將genre屬性值為“李贊紅“的節點的genre值改為“update李贊紅”,將該節點的子節點<author>
的文本修正為“亞勝”。
XmlNodeList nodeList=XMLDoc.SelectSingleNode("bookstore").ChildNodes;//獲取bookstore節點的任何子節
點
foreach(XMLNode xn in nodeList)//遍歷任何子節點
{
XmlElement xe=(XmlElement)xn;//將子節點類型轉換為XMLElement類型
if(xe.GetAttribute("genre")=="李贊紅")//假如genre屬性值為“李贊紅”
{
xe.SetAttribute("genre","update李贊紅");//則修正該屬性為“update李贊紅”
XMLNodeList nls=xe.ChildNodes;//繼續獲取xe子節點的任何子節點
foreach(XMLNode xn1 in nls)//遍歷
{
XmlElement xe2=(XMLElement)xn1;//轉換類型
if(xe2.Name=="author")//假如找到
{
xe2.InnerText="亞勝";//則修正
break;//找到退出來就可以了
}
}
break;
}
}
xmlDoc.Save("bookstore.XML");//保存。
//=================
結尾結果為:
<?XML version="1.0" encoding="gb2312"?>
<bookstore>
<book genre="fantasy" ISBN="2-3631-4">
<title>Oberons Legacy</title>
<author>Corets, Eva</author>
<price>5.95</price>
</book>
<book genre="update李贊紅" ISBN="2-3631-4">
<title>CS從入門到知曉 </title>
<author>亞勝</author>
<price>58.3</price>
</book>
</bookstore>
3、刪除 <book genre="fantasy" ISBN="2-3631-4">節點的genre屬性,刪除 <book genre="update李贊紅"
ISBN="2-3631-4">節點。
XmlNodeList xnl=XMLDoc.SelectSingleNode("bookstore").ChildNodes;
foreach(XMLNode xn in xnl)
{
XmlElement xe=(XMLElement)xn;
if(xe.GetAttribute("genre")=="fantasy")
{
xe.RemoveAttribute("genre");//刪除genre屬性
}
else if(xe.GetAttribute("genre")=="update李贊紅")
{
xe.RemoveAll();//刪除該節點的一切 內容
}
}
xmlDoc.Save("bookstore.XML");
//====================
結尾結果為:
<?XML version="1.0" encoding="gb2312"?>
<bookstore>
<book ISBN="2-3631-4">
<title>Oberons Legacy</title>
<author>Corets, Eva</author>
<price>5.95</price>
</book>
<book>
</book>
</bookstore>
4、顯示任何數據。
XmlNode xn=XMLDoc.SelectSingleNode("bookstore");
XMLNodeList xnl=xn.ChildNodes;
foreach(XMLNode xnf in xnl)
{
XmlElement xe=(XMLElement)xnf;
Console.WriteLine(xe.GetAttribute("genre"));//顯示屬性值
Console.WriteLine(xe.GetAttribute("ISBN"));
XMLNodeList xnf1=xe.ChildNodes;
foreach(XMLNode xn2 in xnf1)
{
Console.WriteLine(xn2.InnerText);//顯示子節點點文本
}
}
public static string DataToXml(string _ip,string _xmlType,bool _issaveXML,string
_contenttype,string _message,string _sendtime,string _toip)
{
//return null;
DataParser dp = new DataParser();
dp.Message = _message;
dp.IP = _ip;
dp.XmlType = _XMLType;
dp.isSaveXml = _issaveXML;
dp.ContentType = _contenttype;
dp.Sendtime = _sendtime;
dp.Toip = _toip;
XmlDocument doc = new XMLDocument();
XmlDeclaration newDec = doc.CreateXMLDeclaration("1.0",null,null);
doc.AppendChild(newDec);
XMLElement newRoot = doc.CreateElement("Requests");
doc.AppendChild(newRoot);
XMLElement newtitle = doc.CreateElement("Request");
newtitle.SetAttribute("time", dp.Sendtime);
newRoot.AppendChild(newtitle);
XMLElement from = doc.CreateElement("from");
from.SetAttribute("ip", dp.IP);
from.SetAttribute("type", dp.XMLType);
from.SetAttribute("ctntype", dp.ContentType);
XmlNode xnfrom = doc.CreateNode(XMLNodeType.CDATA, "content", null);
xnfrom.InnerText = _message;
from.PrependChild(xnfrom);
// from.InnerText = _message;
newtitle.AppendChild(from);
XMLElement to = doc.CreateElement("to");
(to as XMLElement).SetAttribute("ip", dp.Toip);
newtitle.AppendChild(to);
return doc.OuterXML;
}
}
}
catch (Exception err)
{
ChatCommon.Common.ExceptionHand.HandleErr(err.ToString());
}
return dp;
}
using System;
using System.Collections.Generic;
using System.Text;
using System.XML;
namespace XMLDOM
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XMLDocument();
XmlDeclaration xd = doc.CreateXMLDeclaration("1.0", null, null);
doc.AppendChild(xd);
XMLElement xe = doc.CreateElement("bookstore");
doc.AppendChild(xe);
XMLElement xr = doc.CreateElement("book");
xr.SetAttribute("publish", "thinkbank+1");
xr.InnerText = "c#基本 ";
xe.AppendChild(xr);
XMLElement xr2 = doc.CreateElement("book");
xr2.SetAttribute("publish", "thinkbank+1");
xr2.InnerText = "j#基本 ";
xe.AppendChild(xr2);
string xml = doc.OuterXML;
XmlDocument doc2 = new XMLDocument();
doc2.LoadXml(XML);
//doc.Save(@"d:/33.XML");
//XmlDocument doc = new XMLDocument();
//doc.Load(@"d:/33.XML");
////XMLNode xn = doc.SelectSingleNode("bookstore");
XMLNodeList xnlist = doc2.SelectNodes("//book");
foreach (XMLNode mynode in xnlist)
{
Console.WriteLine(mynode.InnerText);
}
}
}
}
xp ath 使用:
XML 文檔對象模型 (DOM)
可以以編程方式 讀取、處理和修正 XML 文檔。
xp ath 表達式
xp ath 表達式運用途徑表示 法(與 URL 中運用的途徑表示 法相似)尋址 XML 文檔的各個部分。表達式計算為生
成子元素集、布爾值、數字或字符串類型的對象。
URL與xp ath 表達式比較
URL: 由文件零碎中的文件夾和文件組成的層次結構。
每個級別具有獨一稱號的文件。URL 總是標識單個文件。
絕對特定文件夾(稱為“當前文件夾”)實行計算。
xp ath: 由 XML 文檔中的元素和其他元素組成的層次結構。
每個級別的元素名能夠不是獨一的。xp ath 表達式標識一切婚配的元素集。
絕對特定元素(稱為表達式的“上下文”)實行計算。
基本 xp ath 表達式 (判別是誰的集合!!)
1.當前上下文
以句點和正斜槓 (./) 作為前綴的表達式明白運用當前上下文作為上下文。比方,以下表達式引用 當前上下文
中的一切 <author> 元素:
./author
留心,此表達式等效於以下表達式:
author
2.文檔根
以正斜槓 (/) 為前綴的表達式運用文檔樹的根作為上下文。比方,以下表達式引用 此文檔根的 <bookstore>
元素:
/bookstore
3.根元素
運用正斜槓後接星號 (/*) 的表達式將運用根元素作為上下文。比方,以下表達式查找文檔的根元素:
/*
4.遞歸降低
用雙正斜槓 (//) 的表達式指示可以 包含零個或多個層次結構級別的搜索。假如此運算符出如今方式 的掃尾,
上下文絕對於文檔的根。比方,以下表達式引用 當前文檔中隨意位置 的一切 <author> 元素:
//author
.// 前綴指示上下文從層次結構中當前上下文所指示的級別開端。
5.特定元素
以元素名掃尾的表達式引用 特定元素的查詢,從當前上下文節點開端。比方,以下表達式引用 當前上下文節點中 <images> 元素內的 <background.jpg> 元素:
images/background.jpg
以下表達式引用 當前上下文節點中 <bookstore> 元素內的 <book> 元素的集合:
bookstore/book
以下表達式引用 當前上下文節點中的一切 <first.name> 元素:
first.name
xp ath 表達式是運用下表中所示的運算符和特殊字符構造的。
運算符和特殊字符:
/ 子運算符;挑選左側集合的直接子級。此途徑運算符出如今方式 掃尾時,表示 應從根節點挑選該子級。
// 遞歸降低;在隨意深度搜索指定元素。此途徑運算符出如今方式 掃尾時,表示 應從根節點遞歸降低。
. 指示當前上下文。
.. 當前上下文節點的父級。
* 通配符;挑選一切元素,與元素名有關。
@ 屬性;屬性名的前綴。
@* 屬性通配符;挑選一切屬性,與稱號有關。
: 命名空間分隔符;將命名空間前綴與元素名或屬性名分隔。
( ) 為運算分組,明白配置優先級。
[ ] 使用挑選方式 。
[ ] 下標運算符;用於在集合中編制索引。
+ 執行加法。
- 執行減法。
div 根據 IEEE 754 執行浮點除法。
* 執行乘法。
mod 從截斷除法前往余數。
優先級 字符 用途
1 ( ) 分組
2 [ ] 挑選器
3 / // 途徑運算
分組運算符()僅適用於頂級途徑表達式。
比方 :
(//author/degree //author/name) 是有效的分組運算
//author/(degree name) 不是有效的分組運算
挑選方式 運算符 [] 的優先級高於途徑運算符(/ 和 //)。
比方 :
//comment()[3]
挑選絕對於文檔中隨意位置 comment的父級索引等於3的一切 comment,可以 前往多個備注
(//comment())[3]
挑選絕對於父級的一切 comment集中的第三個comment,只好前往一個備注。
author/first-name
當前上下文節點的 <author> 元素中的一切 <first-name> 元素。
bookstore//title
<bookstore> 元素中更深的一級或多級(隨意子代)的一切 <title> 元素。留心,此表達式與以下方式
bookstore/*/title 不一樣。
bookstore/*/title
屬於 <bookstore> 元素的孫級的一切 <title> 元素。
bookstore//book/excerpt//emph
<book> 元素的 <excerpt> 子級中的隨意位置 和 <bookstore> 元素中的隨意位置 的一切 <emph> 元素:
.//title
當前上下文中更深的一級或多級的一切 <title> 元素。留心,本質上只要這種狀況須要句點表示 法。
通配符
議決運用通配符 * 集合,不運用元素名即可引用 元素。* 集合引用 作為當前上下文的子級的一切元素,與稱號無
關。
比方 :
author/*
<author> 元素的一切元素子級。
book/*/last-name
一切作為 <book> 元素的孫級的 <last–name> 元素。
*/*
當前上下文的一切孫級元素。
my:book
my 命名空間中的 <book> 元素。
my:*
my 命名空間中的一切元素。
屬性
xp ath 運用 @ 符號表示 屬性名。屬性和子元素應公平對待,兩種類 型之間的功能應盡能夠相當。
比方 :
@style
當前元素上下文的 style 屬性。
price/@Exchange
當前上下文中 <price> 元素的 Exchange 屬性。
book/@style
一切 <book> 元素的 style 屬性。
@*
當前上下文節點的一切屬性。
@my:*
my 命名空間中的一切屬性。不包含 my 命名空間中的元素的未限定屬性。
留心 :
屬性無法包含子元素,所以,假如對屬性使用途徑運算符,將出現語法不正確。此外,無法對屬性使用索引,
由於根據解釋,不為屬性解釋任何順序。
price/@Exchange/total
比較
運算符:
and 邏輯與
or 邏輯或
not() 非
= 相等
!= 不相等
< 小於
<= 小於或等於
> 大於
<= 大於或等於
集運算;前往兩個節點集的結合 比方 :
author[last-name = "Bob"]
至少包含一個值為 Bob 的 <last-name> 元素的一切 <author> 元素。
author[last-name[1] = "Bob"]
第一個 <last-name> 子元素的值為 Bob 的一切 <author> 元素。
author/degree[@from != "Harvard"]
包含 from 屬性不等於 "Harvard" 的 <degree> 元素的一切 <author> 元素。
author[last-name = /editor/last-name]
包含與根元素下 <editor> 元素中的 <last-name> 元素相似的 <last-name> 元素的一切 <author> 元素。
author[. = "Matthew Bob"]
一切字符串值為 Matthew Bob 的 <author> 元素。
集運算
Union () 運算符
(即 union)運算符前往兩個操作數的結合,操作數必須是節點集。比方,//author //publisher 前往的節
點集結合了一切 //author 節點和一切 //publisher 節點。
比方 :
first-name last-name
包含當前上下文中的 <first-name> 和 <last-name> 元素的節點集。
(bookstore/book bookstore/magazine)
包含 <bookstore> 元素中的 <book> 或 <magazine> 元素的節點集。
book book/author
包含 <book> 元素中的一切 <book> 元素和一切 <author> 元素的節點集。
(book magazine)/price
包含 <book> 或 <magazine> 元素的一切 <price> 元素的節點集。
挑選器和挑選方式
議決將挑選子句 [pattern] 添加到集合中,可以 對任何集合使用約束和分支。挑選器相似於 SQL WHERE 子句。
挑選器中包含的方式 稱為“挑選方式 ”。
比方 :
book[excerpt]
至少包含一個 <excerpt> 元素的一切 <book> 元素。
book[excerpt]/title
至少包含一個 <excerpt> 元素的 <book> 元素內的一切 <title> 元素。
book[excerpt]/author[degree]
至少包含一個 <degree> 元素並且在至少包含一個 <excerpt> 元素的 <book> 元素內的一切 <author> 元素
。
book[author/degree]
至少包含一個 <author> 元素並且該元素至少包含一個 <degree> 子元素的 <book> 一切元素。
book[excerpt][title]
至少包含一個 <excerpt> 元素以及至少包含一個 <title> 元素的 <book> 一切元素。
唑唑小燒