ASP.NET中處理讀寫XML小結

來源:互聯網
上載者:User
using System.Xml;

初始化一個xml執行個體
XmlDocument xml=new XmlDocument();

匯入指定xml檔案
xml.Load(path);
xml.Load(HttpContext.Current.Server.MapPath("../7in10.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檔案
xml.Save(path);
xml.Save(HttpContext.Current.Server.MapPath("../7in10.xml")); 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.