這篇文章主要介紹XmlDocument對(duì)象操作的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)是一家專注于做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),共青城網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:共青城等地區(qū)。共青城做網(wǎng)站價(jià)格咨詢:13518219792使用XmlReader遍歷文檔是很方便的,使用XmlWriter生成一個(gè)新的XML文檔也很容易.但是對(duì)現(xiàn)有的XML進(jìn)行修改,例如添加一個(gè)元素或修改一個(gè)屬性值,就比較麻煩了.此時(shí),可以使用XmlDocument對(duì)象,通過(guò)調(diào)用DOM方法對(duì)文檔進(jìn)行修改,然后再保存.由于DOM已經(jīng)進(jìn)行了標(biāo)準(zhǔn)化,很多語(yǔ)言都對(duì)他進(jìn)行了支持,比如JS,因此這里的很多方法與JS中都是一致的,比如GetElementByID(),GetElementByTagName(),AppendChild(),InsertAfter()等.
1、創(chuàng)建一個(gè)xml文件
XmlDocument doc = new XmlDocument(); XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "UTF-8", null); doc.AppendChild(dec); XmlElement root = doc.CreateElement("bookstore");//創(chuàng)建根節(jié)點(diǎn) doc.AppendChild(root); XmlElement newBook = _doc.CreateElement("book");//create a new 'book' element //set some attributes newBook.SetAttribute("genre", "Mystery"); newBook.SetAttribute("publicationdate", "2001"); newBook.SetAttribute("ISBN", "123456789"); //create a new 'title' element XmlElement newTitle = _doc.CreateElement("title"); newTitle.InnerText = "Case of the Missing Cookie"; newBook.AppendChild(newTitle); //create new author element XmlElement newAuthor = _doc.CreateElement("author"); newBook.AppendChild(newAuthor); //create new name element XmlElement newName = _doc.CreateElement("name"); newName.InnerText = "Cookie Monster"; newAuthor.AppendChild(newName); //create new price element XmlElement newPrice = _doc.CreateElement("price"); newPrice.InnerText = "9.95"; newBook.AppendChild(newPrice); //add to the current documentdoc.DocumentElement.AppendChild(newBook);//_doc.DocumentElement為獲取xml的根 doc.Save("bb.xml");將 XML 文檔保存到指定的位置
2、插入節(jié)點(diǎn) 與創(chuàng)建xml 文件類似
_doc.Load("books.xml"); XmlElement newBook = _doc.CreateElement("book"); newBook.SetAttribute("genre", "Mystery"); newBook.SetAttribute("publicationdate", "2001"); newBook.SetAttribute("ISBN", "123456789"); XmlElement newTitle = _doc.CreateElement("title"); newTitle.InnerText = "Case of the Missing Cookie"; newBook.AppendChild(newTitle); XmlElement newAuthor = _doc.CreateElement("author"); newBook.AppendChild(newAuthor); XmlElement newName = _doc.CreateElement("name"); newName.InnerText = "Cookie Monster"; newAuthor.AppendChild(newName); XmlElement newPrice = _doc.CreateElement("price"); newPrice.InnerText = "9.95"; newBook.AppendChild(newPrice); _doc.DocumentElement.AppendChild(newBook); _doc.Save("booksEdit.xml"); 或者下面這樣保存 XmlTextWriter tr = new XmlTextWriter("booksEdit.xml", null);//將xml文檔保存,如果存在此文件,則覆蓋 tr.Formatting = Formatting.Indented; _doc.WriteContentTo(tr); tr.Close();
3、修改xml節(jié)點(diǎn)
將genre屬性值為“novel“的節(jié)點(diǎn)的genre值改為“updatenovel”,將該節(jié)點(diǎn)的子節(jié)點(diǎn)的文本修改為“啦啦啦啦”。
XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;//獲取bookstore節(jié)點(diǎn)的所有子節(jié)點(diǎn) foreach(XmlNode xn in nodeList)//遍歷所有子節(jié)點(diǎn) { XmlElement xe=(XmlElement)xn;//將子節(jié)點(diǎn)類型轉(zhuǎn)換為XmlElement類型 if(xe.GetAttribute("genre")=="novel")//如果genre屬性值為“李贊紅” { xe.SetAttribute("genre","updatenovel");//則修改該屬性為“update李贊紅” XmlNodeList nls=xe.ChildNodes;//繼續(xù)獲取xe子節(jié)點(diǎn)的所有子節(jié)點(diǎn) foreach(XmlNode xn1 in nls)//遍歷 { XmlElement xe2=(XmlElement)xn1;//轉(zhuǎn)換類型 if(xe2.Name=="title")//如果找到 { xe2.InnerText="亞勝";//則修改 break;//找到退出來(lái)就可以了 } } break; } } xmlDoc.Save("bookstore.xml");//保存。
4、刪除節(jié)點(diǎn)
節(jié)點(diǎn)的genre屬性,刪除 節(jié)點(diǎn)。
XmlNodeList xnl=xmlDoc.SelectSingleNode("bookstore").ChildNodes; foreach(XmlNode xn in xnl) { XmlElement xe=(XmlElement)xn; if(xe.GetAttribute("genre")=="fantasy") { xe.RemoveAttribute("genre");//刪除genre屬性 } else if(xe.GetAttribute("genre")=="update李贊紅") { xe.RemoveAll();//刪除該節(jié)點(diǎn)的全部?jī)?nèi)容 } } xmlDoc.Save("bookstore.xml");
5、遍歷xml
string filePath = "bookstore.xml"; XmlDocument doc = new XmlDocument(); doc.Load(filePath); XmlNode root = doc.DocumentElement; showNode(root); private static void showNode(XmlNode root) { if (root.NodeType==XmlNodeType.Text) { Console.WriteLine(root.Value); } if (root.NodeType==XmlNodeType.Element) { Console.WriteLine(root.Name); } if (root.Attributes!=null&&root.Attributes.Count>0) { foreach (XmlAttribute attr in root.Attributes) { Console.Write("{0}={1} ",attr.Name,attr.Value); } Console.WriteLine(); } XmlNodeList chiledList = root.ChildNodes; foreach (XmlNode child in chiledList) { showNode(child); } }
以上是“XmlDocument對(duì)象操作的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!