C#.NET示例讀寫xml所有節(jié)點的代碼實現(xiàn)方法和讀取xml節(jié)點的數(shù)據(jù)總結(jié)_第1頁
C#.NET示例讀寫xml所有節(jié)點的代碼實現(xiàn)方法和讀取xml節(jié)點的數(shù)據(jù)總結(jié)_第2頁
C#.NET示例讀寫xml所有節(jié)點的代碼實現(xiàn)方法和讀取xml節(jié)點的數(shù)據(jù)總結(jié)_第3頁
C#.NET示例讀寫xml所有節(jié)點的代碼實現(xiàn)方法和讀取xml節(jié)點的數(shù)據(jù)總結(jié)_第4頁
C#.NET示例讀寫xml所有節(jié)點的代碼實現(xiàn)方法和讀取xml節(jié)點的數(shù)據(jù)總結(jié)_第5頁
已閱讀5頁,還剩1頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、/打開某文件 (假設(shè) web.config 在根目錄中 ) string filename=server.mappath(/) + webapplication1web.config; xmldocument xmldoc= new xmldocument(); xmldoc.load(filename); /得到頂層節(jié)點列表 xmlnodelist topm=xmldoc.documentelement.childnodes; foreach(xmlelement element in topm) if(element.name.tolower()=appsettings) /得到該節(jié)點的子

2、節(jié)點 xmlnodelist nodelist=element.childnodes; if ( nodelist.count 0 ) /dropdownlist1.items.clear(); foreach(xmlelement el in nodelist)/讀元素值 /dropdownlist1.items.add(el.attributeskey.innerxml); /this.textbox2.text=el.attributeskey.innertext; this.textbox2.text=el.attributeskey.value; this.label1.text=e

3、l.attributesvalue.value; /同樣在這里可以修改元素值, 在后面 save。 / el.attributesvalue.value=this.textbox2.text; xmldoc.save(filename); 效果: / 添加空元素: xmlnode node=doc.createelement(groupname); node.innertext=; doc.lastchild.appendchild(node); doc.save(xmlfile); 刪除一個節(jié)點元素 string itemname=this.listbox1.selecteditem.tos

4、tring(); this.listbox1.items.remove(this.listbox1.selecteditem); /begin del xmlfile xmldocument doc=new xmldocument(); doc.load(xmlfile); xmlnodelist topm=doc.documentelement.childnodes; foreach(xmlelement element in topm) if(element.name=bobox1.text) /得到該節(jié)點的子節(jié)點 xmlnodelist nodelist=element.childnod

5、es; foreach(xmlelement el in nodelist)/讀元素值 if(el.attributeskey.value=itemname) element.removechild(el); /循環(huán)元素 /得到組 /循環(huán)組 doc.save(xmlfile); /一定要保存一下,否則不起作用/ 篩選數(shù)據(jù)private void reader_xml(string pathflie) xmldocument xmldoc=new xmldocument(); xmldoc.load(pathflie); xmlnodelist record1=xmldoc.documentel

6、ement.selectnodes(codeid=1) int f=0; foreach(xmlnode xnode in record1) /*/*讀取 xml 數(shù)據(jù)兩種 xml 方式*/ something something /*/*第一種方法 */ ds.readxml(your xmlfile name); container.dataitem(bb); container.dataitem(cc); ds.readxmlschema(your xmlfile name); /*/*第二種方法 */ 如果我要找到 123 然后取到 321 應(yīng)該怎么寫呢?using system.xm

7、l; xmldatadocument xmldoc = new system.xml.xmldatadocument(); xmldoc.load(c:config.xml); xmlelement elem = xmldoc.getelementbyid(add); string str = elem.attributesvalue.value /*/*第三種方法 : selectsinglenode 讀取兩種格式的 xml *-/ - data source=yf; user id=ctm_dbo;password=123 在某節(jié)點下增加一個元素,并設(shè)置值: if(element.name

8、.tolower()=appsettings) xmlelement elem =xmldoc.createelement(add); element.appendchild(elem); elem.innertext=ltp; xmldoc.save(filename); 效果: ltp 在某節(jié)點下增加一個元素,并增加兩個屬性: if(element.name.tolower()=appsettings) xmlelement elem =xmldoc.createelement(add); element.appendchild(elem); xmlattribute xa=xmldoc.

9、createattribute(key); xa.value=ltp; xmlattribute xa2=xmldoc.createattribute(value); xa2.value=first; elem.setattributenode(xa); elem.setattributenode(xa2); xmldoc.save(filename); - xmldocument doc = new xmldocument(); doc.load(strxmlname); xmlnode node=doc.selectsinglenode(/configuration/appsettings

10、/connectionstring); if(node!=null) string k1=node.value; /null string k2=node.innertext;/data source=yf; user id=ctm_dbo;password=123 string k3=node.innerxml;/data source=yf; user id=ctm_dbo;password=123 node=null; * *-* xmlnode node=doc.selectsinglenode(/configuration/appsettings/add); if(node!=null) string k=node.attributeskey.value; string v=node.attributesvalue.value; node=null; *-* xmlnode node=doc.selectsinglenode(/configuration/appsettings/add); if(node!=null)

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論