点击这里给我发消息 点击这里给我发消息

如何在ASP.net(C#)下操作XML文件

添加时间:2012-1-17
    相关阅读: ASP 站长 C#

核心提示:本文将重点介绍如何在ASP.net(C#)下操作XML文件。

本文将重点介绍如何在ASP.net(C#)下操作XML文件。

1,创建xml文件:

代码:

XmlDocument xmldoc = new XmlDocument ( ) ;
//加入XML的声明段落,<?xml version="1.0" encoding="gb2312"?>
XmlDeclaration xmldecl;
xmldecl = xmldoc.CreateXmlDeclaration("1.0","gb2312",
null);
xmldoc.AppendChild ( xmldecl);

//加入一个根元素
XmlElement xmlelem = xmldoc.CreateElement( "" , "Websites" , "" ) ;
xmldoc.AppendChild ( xmlelem ) ;
//加入另外一个元素
for(int i=1;i<3;i++)
{
    XmlNode rootElement=xmldoc.SelectSingleNode("Websites");
//查找<Websites> 
    XmlElement websiteElement=xmldoc.CreateElement("Website");//创建一个<Website>节点 
    websiteElement.SetAttribute("genre","www.chinaz.com");//设置该节点genre属性 
    websiteElement.SetAttribute("ISBN","2-3631-4");//设置该节点ISBN属性 
    XmlElement titleElement=xmldoc.CreateElement("title"); 
    titleElement.InnerText="
中国站长站";//设置文本节点 
    websiteElement.AppendChild(titleElement);//添加到<Website>节点中 
    XmlElement authorElement=xmldoc.CreateElement("author"); 
    authorElement.InnerText="
作者"; 
    websiteElement.AppendChild(authorElement); 
    XmlElement urlElement=xmldoc.CreateElement("url"); 
    urlElement.InnerText="http://www.chinaz.com"; 
    websiteElement.AppendChild(urlElement); 
    rootElement.AppendChild(websiteElement);
//添加到<Websites>节点中 
}
//保存创建好的XML文档
xmldoc.Save ( Server.MapPath("database.xml") ) ; 


结果:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
</Websites> 

 

//database.xml文件内容如下

 2,添加结点:  

XmlDocument xmlDoc=new XmlDocument(); 
xmlDoc.Load(Server.MapPath("database.xml")); 
XmlNode rootElement=xmlDoc.SelectSingleNode("Websites");
//查找<Websites> 
XmlElement websiteElement=xmlDoc.CreateElement("Website");//创建一个<Website>节点 
websiteElement.SetAttribute("genre","www.cnzz.com");//设置该节点genre属性 
websiteElement.SetAttribute("ISBN","1-1111-1");//设置该节点ISBN属性 
XmlElement titleElement=xmlDoc.CreateElement("title"); 
titleElement.InnerText="
站长统计";//设置文本节点 
websiteElement.AppendChild(titleElement);//添加到<Website>节点中 
XmlElement authorElement=xmlDoc.CreateElement("author"); 
authorElement.InnerText="
站长"; 
websiteElement.AppendChild(authorElement); 
XmlElement urlElement=xmlDoc.CreateElement("url"); 
urlElement.InnerText="http://www.cnzz.com"; 
websiteElement.AppendChild(urlElement); 
rootElement.AppendChild(websiteElement);
//添加到<Websites>节点中 
xmlDoc.Save ( Server.MapPath("database.xml") );

结果:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.cnzz.com" ISBN="1-1111-1">
    
<title>站长统计</title>
    
<author>站长</author>
    
<url>http://www.cnzz.com</url>
  
</Website>
</Websites>

3,修改结点的值:

XmlDocument xmlDoc=new XmlDocument(); 
xmlDoc.Load( Server.MapPath("database.xml") ); 
XmlNodeList nodeList=xmlDoc.SelectSingleNode("Websites").ChildNodes;
//获取Websites节点的所有子节点 
foreach(XmlNode xn in nodeList)//遍历所有子节点 

    XmlElement xe=(XmlElement)xn;
//将子节点类型转换为XmlElement类型 
    if(xe.GetAttribute("genre")=="www.cnzz.com")//如果genre属性值为“www.cnzz.com” 
    { 
        xe.SetAttribute("genre","updatewww.cnzz.com");
//则修改该属性为“updatewww.cnzz.com” 
        XmlNodeList nls=xe.ChildNodes;//继续获取xe子节点的所有子节点 
        foreach(XmlNode xn1 in nls)//遍历 
        { 
            XmlElement xe2=(XmlElement)xn1;
//转换类型 
            if(xe2.Name=="author")//如果找到 
            { 
                xe2.InnerText="
作者";//则修改
            } 
        } 
    } 

xmlDoc.Save( Server.MapPath("database.xml") );
//保存。

结果:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="updatewww.cnzz.com" ISBN="1-1111-1">
    
<title>站长统计</title>
    
<author>作者</author>
    
<url>http://www.cnzz.com</url>
  
</Website>
</Websites>

4,修改结点 

XmlDocument xmlDoc=new XmlDocument(); 
xmlDoc.Load( Server.MapPath("database.xml") ); 
XmlNodeList nodeList=xmlDoc.SelectSingleNode("Websites").ChildNodes;
//获取Websites节点的所有子节点 
foreach(XmlNode xn in nodeList) 

    XmlElement xe=(XmlElement)xn; 
    xe.SetAttribute("test","99999");
    XmlElement xesub=xmlDoc.CreateElement("fffff"); 
    xesub.InnerText="1"; 
    xe.AppendChild(xesub); 

xmlDoc.Save( Server.MapPath("database.xml") );

结果:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4" test="99999">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
    
<fffff>1</fffff>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4" test="99999">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
    
<fffff>1</fffff>
  
</Website>
  
<Website genre="updatewww.cnzz.com" ISBN="1-1111-1" test="99999">
    
<title>站长统计</title>
    
<author>作者</author>
    
<url>http://www.cnzz.com</url>
    
<fffff>1</fffff>
  
</Website>
</Websites>

 5,删除结点中的某一个属性:

XmlDocument xmlDoc=new XmlDocument(); 
xmlDoc.Load( Server.MapPath("database.xml") ); 
XmlNodeList xnl=xmlDoc.SelectSingleNode("Websites").ChildNodes; 
foreach(XmlNode xn in xnl) 

    XmlElement xe=(XmlElement)xn; 
    xe.RemoveAttribute("genre");
//删除genre属性 
    XmlNodeList nls=xe.ChildNodes;//继续获取xe子节点的所有子节点 
    foreach(XmlNode xn1 in nls)//遍历 
    { 
        XmlElement xe2=(XmlElement)xn1;
//转换类型 
        if(xe2.Name=="fffff")//如果找到 
        { 
            xe.RemoveChild(xe2);
//则删除
        } 
    } 

xmlDoc.Save( Server.MapPath("database.xml") ); 


结果:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website ISBN="2-3631-4" test="99999">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website ISBN="2-3631-4" test="99999">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website ISBN="1-1111-1" test="99999">
    
<title>站长统计</title>
    
<author>作者</author>
    
<url>http://www.cnzz.com</url>
  
</Website>
</Websites>

 6,删除结点:

XmlDocument xmlDoc=new XmlDocument(); 
xmlDoc.Load( Server.MapPath("database.xml") ); 
XmlNode rootElement=xmlDoc.SelectSingleNode("Websites");
XmlNodeList xnl=xmlDoc.SelectSingleNode("Websites").ChildNodes; 
for(int i=0;i<xnl.Count;i++)
{
    XmlElement xe=(XmlElement)xnl.Item(i); 
   
if(xe.GetAttribute("genre")=="www.cnzz.com") 
    { 
        rootElement.RemoveChild(xe);
       
if(i<xnl.Count)i=i-1;
    } 
}
xmlDoc.Save( Server.MapPath("database.xml") ); 

结果:删除了符合条件的所有结点,原来的内容:

 

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.cnzz.com" ISBN="1-1111-1">
    
<title>站长统计</title>
    
<author>站长</author>
    
<url>http://www.cnzz.com</url>
  
</Website>
  
<Website genre="www.cnzz.com" ISBN="1-1111-1">
    
<title>站长统计</title>
    
<author>站长</author>
    
<url>http://www.cnzz.com</url>
  
</Website>
</Websites>

 

删除后的内容:

<?xml version="1.0" encoding="gb2312"?>
<Websites>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
  
<Website genre="www.chinaz.com" ISBN="2-3631-4">
    
<title>中国站长站</title>
    
<author>作者</author>
    
<url>http://www.chinaz.com</url>
  
</Website>
</Websites>

 

 7,按照文本文件读取xml

System.IO.StreamReader myFile =new 
System.IO.StreamReader(Server.MapPath("database.xml"),System.Text.Encoding.Default);
//注意System.Text.Encoding.Default

string myString = myFile.ReadToEnd();//myString是读出的字符串
myFile.Close();

 

 

咨询热线:020-85648757 85648755 85648616 0755-27912581 客服:020-85648756 0755-27912581 业务传真:020-32579052
广州市网景网络科技有限公司 Copyright◎2003-2008 Veelink.com. All Rights Reserved.
广州商务地址:广东省广州市黄埔大道中203号(海景园区)海景花园C栋501室
= 深圳商务地址:深圳市宝源路华丰宝源大厦606
研发中心:广东广州市天河软件园海景园区 粤ICP备05103322号 工商注册