次のような XML ファイル (bookstore.xml) があることがわかっています。
<?xml バージョン="1.0" エンコーディング="gb2312"?>
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
<title>オベロンの遺産</title>
<著者>コレッツ、エヴァ</著者>
<価格>5.95</価格>
</本>
</bookstore>
1. <book> ノードを <bookstore> ノードに挿入します。
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load("bookstore.xml");
XmlNode root=xmlDoc.SelectSingleNode("bookstore");//<bookstore> を検索します
XmlElement xe1=xmlDoc.CreateElement("book");//<book> ノードを作成します
xe1.SetAttribute("genre","Li Zanhong");// ノードのジャンル属性を設定します
xe1.SetAttribute("ISBN","2-3631-4");//ノードの ISBN 属性を設定します。
XmlElement xesub1=xmlDoc.CreateElement("title");
xesub1.InnerText="初心者から熟練者までのCS";//テキストノードを設定します
xe1.AppendChild(xesub1);//<book> ノードに追加
XmlElement xesub2=xmlDoc.CreateElement("作成者");
xesub2.InnerText="侯街";
xe1.AppendChild(xesub2);
XmlElement xesub3=xmlDoc.CreateElement("価格");
xesub3.InnerText="58.3";
xe1.AppendChild(xesub3);
root.AppendChild(xe1);//<bookstore> ノードに追加
xmlDoc.Save("bookstore.xml");
//===============================================
結果は次のとおりです。
<?xml バージョン="1.0" エンコーディング="gb2312"?>
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
<title>オベロンの遺産</title>
<著者>コレッツ、エヴァ</著者>
<価格>5.95</価格>
</本>
<本のジャンル="李山紅" ISBN="2-3631-4">
<title>エントリーからマスターまでの CS</title>
<著者>ホウジエ</著者>
<価格>58.3</価格>
</本>
</bookstore>
2. ノードを変更します。ジャンル属性値が「Li Zanhong」であるノードのジャンル値を「update Li Zanhong」に変更し、このノードの子ノード <author> のテキストを「Ya」に変更します。盛」。
XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;//書店ノードのすべての子ノードを取得します
foreach(XmlNode xn in nodeList)//すべての子ノードを走査します
{
XmlElement xe=(XmlElement)xn;//サブノード型を XmlElement 型に変換します
if(xe.GetAttribute("genre")=="李ザンホン")//ジャンル属性値が「李ザンホン」の場合
{
xe.SetAttribute("genre","update Li Zanhong");//この属性を「update Li Zanhong」に変更します
XmlNodeList nls=xe.ChildNodes;// xe 子ノードのすべての子ノードの取得を続行します
foreach(XmlNode xn1 in nls)//Traverse
{
XmlElement xe2=(XmlElement)xn1;//変換型
if(xe2.Name=="author")//見つかった場合
{
xe2.InnerText="Yasheng";//変更
Break;//それを見つけて終了してください。
}
}
壊す;
}
}
xmlDoc.Save("bookstore.xml");//保存。
//=============================================== ==
最終結果は次のとおりです。
<?xml バージョン="1.0" エンコーディング="gb2312"?>
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
<title>オベロンの遺産</title>
<著者>コレッツ、エヴァ</著者>
<価格>5.95</価格>
</本>
<本のジャンル="update李zanhong" ISBN="2-3631-4">
<title>エントリーからマスターまでの CS</title>
<著者>アサルト</著者>
<価格>58.3</価格>
</本>
</bookstore>
3. <book ジャンル="ファンタジー" ISBN="2-3631-4"> ノードのジャンル属性を削除し、<book ジャンル="update Li Zanhong" ISBN="2-3631-4" を削除します。 > ノード。
XmlNodeList xnl=xmlDoc.SelectSingleNode("bookstore").ChildNodes;
foreach(XmlNode xn in xnl)
{
XmlElement xe=(XmlElement)xn;
if(xe.GetAttribute("ジャンル")=="ファンタジー")
{
xe.RemoveAttribute("genre");//ジャンル属性を削除
}
else if(xe.GetAttribute("genre")=="updateLi Zanhong")
{
xe.RemoveAll();//ノードの内容をすべて削除します
}
}
xmlDoc.Save("bookstore.xml");
//============================================
最終結果は次のとおりです。
<?xml バージョン="1.0" エンコーディング="gb2312"?>
<書店>
<本 ISBN="2-3631-4">
<title>オベロンの遺産</title>
<著者>コレッツ、エヴァ</著者>
<価格>5.95</価格>
</本>
<本>
</本>
</bookstore>
4. すべてのデータを表示します。
XmlNode xn=xmlDoc.SelectSingleNode("bookstore");
XmlNodeList xnl=xn.ChildNodes
(xnl の XmlNode xnf)
;
{
XmlElement xe=(XmlElement)xnf;
Console.WriteLine(xe.GetAttribute("genre"));//属性値を表示
Console.WriteLine(xe.GetAttribute("ISBN"))
;
foreach(xnf1 の XmlNode xn2)
{
Console.WriteLine(xn2.InnerText);//子ノードのテキストを表示します
}
}