C#操作XML的完整例子——XmlDocument篇

这是一个用c#控制台程序下, 用XmlDocument 进行XML操作的的例子,包含了查询、增加、修改、删除、保存的基本操作。较完整的描述了一个XML的整个操作流程。适合刚入门.net XML操作的朋友参考和学习。

假设有XML文件:books.xml

C#操作XML的完整例子——XmlDocument篇 <? xml version="1.0" encoding="UTF-8" ?>
C#操作XML的完整例子——XmlDocument篇
< books >
C#操作XML的完整例子——XmlDocument篇
< book >
C#操作XML的完整例子——XmlDocument篇  
< name > 哈里波特 </ name >
C#操作XML的完整例子——XmlDocument篇  
< price > 10 </ price >
C#操作XML的完整例子——XmlDocument篇  
< memo > 这是一本很好看的书。 </ memo >
C#操作XML的完整例子——XmlDocument篇
</ book >
C#操作XML的完整例子——XmlDocument篇
< book id ="B02" >
C#操作XML的完整例子——XmlDocument篇  
< name > 三国演义 </ name >
C#操作XML的完整例子——XmlDocument篇  
< price > 10 </ price >
C#操作XML的完整例子——XmlDocument篇  
< memo > 四大名著之一。 </ memo >
C#操作XML的完整例子——XmlDocument篇
</ book >
C#操作XML的完整例子——XmlDocument篇
< book id ="B03" >
C#操作XML的完整例子——XmlDocument篇  
< name > 水浒 </ name >
C#操作XML的完整例子——XmlDocument篇  
< price > 6 </ price >
C#操作XML的完整例子——XmlDocument篇  
< memo > 四大名著之一。 </ memo >
C#操作XML的完整例子——XmlDocument篇
</ book >
C#操作XML的完整例子——XmlDocument篇
< book id ="B04" >
C#操作XML的完整例子——XmlDocument篇  
< name > 红楼 </ name >
C#操作XML的完整例子——XmlDocument篇  
< price > 5 </ price >
C#操作XML的完整例子——XmlDocument篇  
< memo > 四大名著之一。 </ memo >
C#操作XML的完整例子——XmlDocument篇
</ book >
C#操作XML的完整例子——XmlDocument篇
</ books >   
C#操作XML的完整例子——XmlDocument篇

下面是为Program.cs

C#操作XML的完整例子——XmlDocument篇 using System;
C#操作XML的完整例子——XmlDocument篇
using System.Collections.Generic;
C#操作XML的完整例子——XmlDocument篇
using System.Text;
C#操作XML的完整例子——XmlDocument篇
using System.Xml;
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇
namespace TestXml
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇
{
C#操作XML的完整例子——XmlDocument篇    
class Program
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇    
{
C#操作XML的完整例子——XmlDocument篇        
static void Main(string[] args)
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇        
{
C#操作XML的完整例子——XmlDocument篇             XmlElement theBook
= null, theElem = null, root = null;
C#操作XML的完整例子——XmlDocument篇            XmlDocument xmldoc
= new XmlDocument();
C#操作XML的完整例子——XmlDocument篇            
try
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇            
{
C#操作XML的完整例子——XmlDocument篇                 xmldoc.Load(
"Books.xml");
C#操作XML的完整例子——XmlDocument篇                 root
= xmldoc.DocumentElement;
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                
//---   新建一本书开始 ----
C#操作XML的完整例子——XmlDocument篇
                 theBook = xmldoc.CreateElement("book");
C#操作XML的完整例子——XmlDocument篇                 theElem
= xmldoc.CreateElement("name");
C#操作XML的完整例子——XmlDocument篇                 theElem.InnerText
= "新书";
C#操作XML的完整例子——XmlDocument篇                 theBook.AppendChild(theElem);
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                 theElem
= xmldoc.CreateElement("price");
C#操作XML的完整例子——XmlDocument篇                 theElem.InnerText
= "20";
C#操作XML的完整例子——XmlDocument篇                 theBook.AppendChild(theElem);
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                 theElem
= xmldoc.CreateElement("memo");
C#操作XML的完整例子——XmlDocument篇                 theElem.InnerText
= "新书更好看。";
C#操作XML的完整例子——XmlDocument篇                 theBook.AppendChild(theElem);
C#操作XML的完整例子——XmlDocument篇                 root.AppendChild(theBook);
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   新建一本书开始 ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(root.OuterXml);
C#操作XML的完整例子——XmlDocument篇                
//---   新建一本书完成 ----
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                
//---   下面对《哈里波特》做一些修改。 ----
C#操作XML的完整例子——XmlDocument篇                
//---   查询找《哈里波特》----
C#操作XML的完整例子——XmlDocument篇
                 theBook = (XmlElement)root.SelectSingleNode("/books/book[name='哈里波特']");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   查找《哈里波特》 ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(theBook.OuterXml);
C#操作XML的完整例子——XmlDocument篇                
//---   此时修改这本书的价格 -----
C#操作XML的完整例子——XmlDocument篇
                 theBook.GetElementsByTagName("price").Item(0).InnerText = "15";//getElementsByTagName返回的是NodeList,所以要跟上item(0)。另外,GetElementsByTagName("price")相当于SelectNodes(".//price")。
C#操作XML的完整例子——XmlDocument篇
                 Console.Out.WriteLine("---   此时修改这本书的价格 ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(theBook.OuterXml);
C#操作XML的完整例子——XmlDocument篇                
//---   另外还想加一个属性id,值为B01 ----
C#操作XML的完整例子——XmlDocument篇
                 theBook.SetAttribute("id", "B01");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   另外还想加一个属性id,值为B01 ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(theBook.OuterXml);
C#操作XML的完整例子——XmlDocument篇                
//---   对《哈里波特》修改完成。 ----
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                
//---   再将所有价格低于10的书删除   ----
C#操作XML的完整例子——XmlDocument篇
                 theBook = (XmlElement)root.SelectSingleNode("/books/book[@id='B02']");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   要用id属性删除《三国演义》这本书 ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(theBook.OuterXml);
C#操作XML的完整例子——XmlDocument篇                 theBook.ParentNode.RemoveChild(theBook);
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   删除后的XML ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(xmldoc.OuterXml);
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                
//---   再将所有价格低于10的书删除   ----
C#操作XML的完整例子——XmlDocument篇
                 XmlNodeList someBooks = root.SelectNodes("/books/book[price<10]");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   再将所有价格低于10的书删除   ---");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   符合条件的书有 " + someBooks.Count + "本。   ---");
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                
for (int i = 0; i < someBooks.Count; i++)
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇                
{
C#操作XML的完整例子——XmlDocument篇                     someBooks.Item(i).ParentNode.RemoveChild(someBooks.Item(i));
C#操作XML的完整例子——XmlDocument篇                 }

C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(
"---   删除后的XML ----");
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(xmldoc.OuterXml);
C#操作XML的完整例子——XmlDocument篇
C#操作XML的完整例子——XmlDocument篇                 xmldoc.Save(
"books.xml");//保存到books.xml
C#操作XML的完整例子——XmlDocument篇

C#操作XML的完整例子——XmlDocument篇                 Console.In.Read();
C#操作XML的完整例子——XmlDocument篇             }

C#操作XML的完整例子——XmlDocument篇            
catch (Exception e)
C#操作XML的完整例子——XmlDocument篇C#操作XML的完整例子——XmlDocument篇            
{
C#操作XML的完整例子——XmlDocument篇                 Console.Out.WriteLine(e.Message);
C#操作XML的完整例子——XmlDocument篇             }

C#操作XML的完整例子——XmlDocument篇         }

C#操作XML的完整例子——XmlDocument篇     }

C#操作XML的完整例子——XmlDocument篇}


From: http://hi.baidu.com/yanzuoguang/blog/item/7ba837cd56e9fd1c01e928d7.html 

你可能感兴趣的:(document)