溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#.NET如何操作XML

發(fā)布時間:2021-12-01 14:18:40 來源:億速云 閱讀:157 作者:小新 欄目:編程語言

小編給大家分享一下C#.NET如何操作XML,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

如何讓C#.NET操作XML?需要添加的命名空間:

using System.Xml;

要完成C#.NET操作XML,首先定義幾個公共對象:

XmlDocument xmldoc ;  XmlNode xmlnode ;  XmlElement xmlelem ;

創(chuàng)建到服務(wù)器同名目錄下的xml文件:

xmldoc = new XmlDocument ( ) ;  //加入XML的聲明段落  xmlnode = xmldoc.CreateNode ( XmlNodeType.XmlDeclaration , "" , "" ) ;  xmldoc.AppendChild ( xmlnode ) ;  //加入一個根元素  xmlelem = xmldoc.CreateElement ( "" , "Employees" , "" ) ;  xmldoc.AppendChild ( xmlelem ) ;  //加入另外一個元素  for(int i=1;i<3;i )  {   XmlNode root=xmldoc.SelectSingleNode("Employees");//查找<Employees> XmlElement xe1=xmldoc.CreateElement("Node");//創(chuàng)建一個<Node>節(jié)點(diǎn)  xe1.SetAttribute("genre","李贊紅");//設(shè)置該節(jié)點(diǎn)genre屬性  xe1.SetAttribute("ISBN","2-3631-4");//設(shè)置該節(jié)點(diǎn)ISBN屬性   XmlElement xesub1=xmldoc.CreateElement("title");  xesub1.InnerText="CS從入門到精通";//設(shè)置文本節(jié)點(diǎn)  xe1.AppendChild(xesub1);//添加到<Node>節(jié)點(diǎn)中  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);//添加到<Employees>節(jié)點(diǎn)中  }  //保存創(chuàng)建好的XML文檔  xmldoc.Save ( Server.MapPath("data.xml") ) ;

結(jié)果:在同名目錄下生成了名為data.xml的文件,內(nèi)容如下

<?xml version="1.0"?> <Employees> <Node genre="李贊紅" ISBN="2-3631-4"> <title>CS從入門到精通</title> <author>候捷</author> <price>58.3</price> </Node> <Node genre="李贊紅" ISBN="2-3631-4"> <title>CS從入門到精通</title> <author>候捷</author> <price>58.3</price> </Node> </Employees>

看完了這篇文章,相信你對“C#.NET如何操作XML”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

xml
AI