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

原文地址:http://www.chinaz.com/program/2007/0611/10020.shtml

本文将重点介绍如何在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();

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值