C# 對XML檔案控制

費勁_奮進發表於2014-04-30

以下是我搜集的一些XML常用的操作,一般就這幾個。你說的問題,可以用這樣的方式someNode.SetAttribute("","");來解決,但首先你需要找到那個需要改動的節點someNode。
using System.Xml;
//初始化一個xml例項
XmlDocument xml=new XmlDocument();

//匯入指定xml檔案
xml.Load(path);
xml.Load(HttpContext.Current.Server.MapPath("~/file/bookstore.xml"));

//指定一個節點
XmlNode root=xml.SelectSingleNode("/root");

//獲取節點下所有直接子節點
XmlNodeList childlist=root.ChildNodes;

//判斷該節點下是否有子節點
root.HasChildNodes;

//獲取同名同級節點集合
XmlNodeList nodelist=xml.SelectNodes("/Root/News");

//生成一個新節點
XmlElement node=xml.CreateElement("News");

//將節點加到指定節點下,作為其子節點
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檔案
string path=Server.MapPath("~/file/bookstore.xml");
xml.Save(path);
//or use :xml.Save(HttpContext.Current.Server.MapPath("~/file/bookstore.xml"));

相關文章