1. 次のような XML ファイル (bookstore.xml) があることがわかります。
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
1.
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load("bookstore.xml");
XmlNode root=xmlDoc.SelectSingleNode("bookstore");//
XmlElement xe1=xmlDoc.CreateElement("book");//
xe1.SetAttribute("genre","Li Zanhong");// ノードのジャンル属性を設定します
xe1.SetAttribute("ISBN","2-3631-4");//ノードの ISBN 属性を設定します
XmlElement xesub1=xmlDoc.CreateElement("タイトル");
xesub1.InnerText="初心者から熟練者までのCS";//テキストノードを設定します
xe1.AppendChild(xesub1);//
XmlElement xesub2=xmlDoc.CreateElement("作成者");
xesub2.InnerText="侯街";
xe1.AppendChild(xesub2);
XmlElement xesub3=xmlDoc.CreateElement("価格");
xesub3.InnerText="58.3";
xe1.AppendChild(xesub3);
root.AppendChild(xe1);//
xmlDoc.Save("bookstore.xml");
//================
結果は次のとおりです。
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
2. ノードを変更します。ジャンル属性値が「Li Zanhong」であるノードのジャンル値を「updateLi Zanhong」に変更し、このノードの子ノード
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");//保存。
//==================
最終結果は次のとおりです。
<書店>
<本のジャンル="ファンタジー" ISBN="2-3631-4">
3.
XmlNodeList xnl=xmlDoc.SelectSingleNode("書店").ChildNodes;
foreach(xnl 内の XmlNode xn)
{
XmlElement xe=(XmlElement)xn;
if(xe.GetAttribute("ジャンル")=="ファンタジー")
{
xe.RemoveAttribute("genre");//ジャンル属性を削除
}
else if(xe.GetAttribute("ジャンル")=="updateLi Zanhong")
{
xe.RemoveAll();//ノードの内容をすべて削除します
}
}
xmlDoc.Save("bookstore.xml");
//====================
最終結果は次のとおりです。
<書店>
<本 ISBN="2-3631-4">
4. すべてのデータを表示します。
XmlNode xn=xmlDoc.SelectSingleNode("本屋");
XmlNodeList xnl=xn.ChildNodes;
foreach(xnl 内の XmlNode xnf)
{
XmlElement xe=(XmlElement)xnf;
Console.WriteLine(xe.GetAttribute("genre"));//属性値を表示
Console.WriteLine(xe.GetAttribute("ISBN"));
XmlNodeList xnf1=xe.ChildNodes;
foreach(xnf1 の XmlNode xn2)
{
Console.WriteLine(xn2.InnerText);//子ノードのテキストを表示します
}
}
参照用に残しておきます。元のアドレスhttp://blog.yesky.com/75/richsee/1211075.shtml
2 フロントエンド コード: html
<%@ Page language="c#" Codebehind="Main.aspx.cs" AutoEventWireup="false" Inherits="DsAndXML.OpXMLFile.Main" %>
<頭>