1. 다음과 같은 XML 파일(bookstore.xml)이 있는 것으로 알려져 있습니다.
<서점>
<도서 장르="판타지" ISBN="2-3631-4">
1.
XmlDocument xmlDoc=new XmlDocument();
xmlDoc.Load("bookstore.xml");
XmlNode root=xmlDoc.SelectSingleNode("bookstore");//<서점> 찾기
XmlElement xe1=xmlDoc.CreateElement("book");//
xe1.SetAttribute("genre","Li Zanhong");//노드의 장르 속성을 설정합니다.
xe1.SetAttribute("ISBN","2-3631-4");//노드의 ISBN 속성을 설정합니다.
XmlElement xesub1=xmlDoc.CreateElement("제목");
xesub1.InnerText="초보자부터 능숙한 CS";//텍스트 노드 설정
xe1.AppendChild(xesub1);//
XmlElement xesub2=xmlDoc.CreateElement("작성자");
xesub2.InnerText="호우지에";
xe1.AppendChild(xesub2);
XmlElement xesub3=xmlDoc.CreateElement("가격");
xesub3.InnerText="58.3";
xe1.AppendChild(xesub3);
root.AppendChild(xe1);//
xmlDoc.Save("bookstore.xml");
//=================
결과는 다음과 같습니다.
<서점>
<도서 장르="판타지" ISBN="2-3631-4">
2. 노드 수정: 장르 속성 값이 "Li Zanhong"인 노드의 장르 값을 "updateLi Zanhong"으로 변경하고, 이 노드의 하위 노드
XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;//bookstore 노드의 모든 하위 노드 가져오기
foreach(XmlNode xn in nodeList)//모든 하위 노드 탐색
{
XmlElement xe=(XmlElement)xn;//하위 노드 유형을 XmlElement 유형으로 변환
if(xe.GetAttribute("genre")=="리잔홍")//장르 속성값이 "리잔홍"인 경우
{
xe.SetAttribute("genre","update Li Zanhong");//속성을 "update Li Zanhong"으로 수정합니다.
XmlNodeList nls=xe.ChildNodes;//계속해서 xe 하위 노드의 모든 하위 노드를 가져옵니다.
foreach(nls의 XmlNode xn1)//트래버스
{
XmlElement xe2=(XmlElement)xn1;//변환 유형
if(xe2.Name=="author")//발견된 경우
{
xe2.InnerText="Yasheng";//수정
break;//그냥 찾아서 종료하세요.
}
}
부서지다;
}
}
xmlDoc.Save("bookstore.xml");//저장.
//===================
최종 결과는 다음과 같습니다.
<서점>
<도서 장르="판타지" ISBN="2-3631-4">
3.
XmlNodeList xnl=xmlDoc.SelectSingleNode("서점").ChildNodes;
foreach(xnl의 XmlNode xn)
{
XmlElement xe=(XmlElement)xn;
if(xe.GetAttribute("genre")=="판타지")
{
xe.RemoveAttribute("genre");//장르 속성 삭제
}
else if(xe.GetAttribute("genre")=="updateLi Zanhong")
{
xe.RemoveAll();//노드의 모든 내용을 삭제합니다.
}
}
xmlDoc.Save("bookstore.xml");
//=====================
최종 결과는 다음과 같습니다.
<서점>
<도서 ISBN="2-3631-4">
4. 모든 데이터를 표시합니다.
XmlNode xn=xmlDoc.SelectSingleNode("서점");
XmlNodeList xnl=xn.ChildNodes;
foreach(xnl의 XmlNode xnf)
{
XmlElement xe=(XmlElement)xnf;
Console.WriteLine(xe.GetAttribute("genre"));//속성값 표시
Console.WriteLine(xe.GetAttribute("ISBN"));
XmlNodeList xnf1=xe.ChildNodes;
foreach(xnf1의 XmlNode xn2)
{
Console.WriteLine(xn2.InnerText);//하위 노드 텍스트 표시
}
}
참고용으로 남겨주세요, 원주소 http://blog.yesky.com/75/richsee/1211075.shtml
2 프론트엔드 코드 : html
<%@ 페이지 언어="c#" Codebehind="Main.aspx.cs" AutoEventWireup="false" Inherits="DsAndXML.OpXMLFile.Main" %>
<헤드>