XmlDocument 개체 작업에 대한 세부 단계

PHPz
풀어 주다: 2017-03-12 15:55:46
원래의
2224명이 탐색했습니다.

속성 값을 사용하여 문서를 순회하는 것이 매우 편리합니다. 이때 XmlDocumentObject를 사용하여 수정할 수 있습니다. DOM 메서드를 호출하여 문서를 작성한 다음 저장합니다. DOM은 표준화되어 있으므로 JS와 같은 많은 언어 ​​가 이를 지원하므로 여기의 많은 메서드는 JS와 일치합니다. GetElementByID(), GetElementByTagName(), App endChild(),InsertAfter() 등1. XML 파일 생성

XmlDocument doc = new XmlDocument();
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
doc.AppendChild(dec);
 XmlElement root = doc.CreateElement("bookstore");//创建根节点
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. 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 노드 수정

장르 속성 값이 "novel"인 노드의 장르 값을 "updatenovel"로 변경하고 텍스트를 수정합니다. 노드의 자식 노드를 "la la la la"로 변경합니다.

XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;//获取bookstore节点的所有子节点 foreach(XmlNode xn in nodeList)//遍历所有子节点 { XmlElement xe=(XmlElement)xn;//将子节点类型转换为XmlElement类型 if(xe.GetAttribute("genre")=="novel")//如果genre属性值为“李赞红” { xe.SetAttribute("genre","updatenovel");//则修改该属性为“update李赞红” XmlNodeList nls=xe.ChildNodes;//继续获取xe子节点的所有子节点 foreach(XmlNode xn1 in nls)//遍历 { XmlElement xe2=(XmlElement)xn1;//转换类型 if(xe2.Name=="title")//如果找到 { xe2.InnerText="亚胜";//则修改 break;//找到退出来就可以了 } } break; } } 
xmlDoc.Save("bookstore.xml");//保存。
로그인 후 복사

4.

노드의 장르 속성을 삭제하고 해당 노드를 삭제합니다.

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();//删除该节点的全部内容 
} 
} 
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 개체 작업에 대한 세부 단계의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!