C#读写xml文件

简介: c#读写xml文件已知有一个XML文件(bookstore.xml)如下:代码                      Oberon's Legacy              Corets, Eva              5.
c#读写xml文件
已知有一个XML文件(bookstore.xml)如下:
img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
<? xml version="1.0" encoding="gb2312" ?>
< bookstore >   
     
< book  genre ="fantasy"  ISBN ="2-3631-4" >     
          
< title > Oberon's Legacy </ title >     
          
< author > Corets, Eva </ author >     
          
< price > 5.95 </ price >   
     
</ book >
</ bookstore >

1、往<bookstore>节点中插入一个<book>节点:

 

img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
            XmlDocument xmlDoc  =   new  XmlDocument();
            xmlDoc.Load(
" da.xml " );
            XmlNode root 
=  xmlDoc.SelectSingleNode( " bookstore " ); // 查找<bookstore>
            XmlElement xe1  =  xmlDoc.CreateElement( " book " ); // 创建一个<book>节点
            xe1.SetAttribute( " genre " " 李赞红 " ); // 设置该节点genre属性
            xe1.SetAttribute( " ISBN " " 2-3631-4 " ); // 设置该节点ISBN属性
            XmlElement xesub1  =  xmlDoc.CreateElement( " title " );
            xesub1.InnerText 
=   " CS从入门到精通 " ; // 设置文本节点
            xe1.AppendChild(xesub1); // 添加到<book>节点中
            XmlElement xesub2  =  xmlDoc.CreateElement( " author " );
            xesub2.InnerText 
=   " 候捷 " ;
            xe1.AppendChild(xesub2);
            XmlElement xesub3 
=  xmlDoc.CreateElement( " price " );
            xesub3.InnerText 
=   " 58.3 " ;
            xe1.AppendChild(xesub3);
            root.AppendChild(xe1);
// 添加到<bookstore>节点中
            xmlDoc.Save( " da.xml " );

 

结果为:

 

img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
<? xml version="1.0" encoding="gb2312" ?>
< bookstore >
  
< book  genre ="fantasy"  ISBN ="2-3631-4" >
    
< title > Oberon's Legacy </ title >
    
< author > Corets, Eva </ author >
    
< price > 5.95 </ price >
  
</ book >
  
< book  genre ="李赞红"  ISBN ="2-3631-4" >
    
< title > CS从入门到精通 </ title >
    
< author > 候捷 </ author >
    
< price > 58.3 </ price >
  
</ book >
</ bookstore >

 

2、修改节点:将genre属性值为“李赞红“的节点的genre值改为“update李赞红”,将该节点的子节点<author>的文本修改为“亚胜”。

 

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

 

 

C#利用XmlTextReader读取XML节点数据

 

img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
<? xml version="1.0" encoding="utf-8"  ?>
< google >
  
< googleColorBorder > f6fbff </ googleColorBorder >
  
< googleColorBG > f6fbff </ googleColorBG >
  
< googleColorLink > 666666 </ googleColorLink >
  
< googleColorText > 046b7A </ googleColorText >
  
< googleColorUrl > 008000 </ googleColorUrl >
</ google >

 

 

img_405b18b4b6584ae338e0f6ecaf736533.gif 代码
protected   void  Page_Load( object  sender, EventArgs e)
    {
        XmlTextReader xtr 
=   new  XmlTextReader( " c:\\AdColor2.xml " );
        
while  (xtr.Read()) {
            
if  (xtr.NodeType  ==  XmlNodeType.Element  &&  xtr.LocalName  ==   " googleColorBorder " ) {
                Response.Write(xtr.ReadString() 
+   " <br/> " );
            }

            
if  (xtr.NodeType  ==  XmlNodeType.Element  &&  xtr.LocalName  ==   " googleColorBG " )
            {
                Response.Write(xtr.ReadString() 
+   " <br/> " );
            }

            
if  (xtr.NodeType  ==  XmlNodeType.Element  &&  xtr.LocalName  ==   " googleColorLink " )
            {
                Response.Write(xtr.ReadString() 
+   " <br/> " );
            }

            
if  (xtr.NodeType  ==  XmlNodeType.Element  &&  xtr.LocalName  ==   " googleColorText " )
            {
                Response.Write(xtr.ReadString() 
+   " <br/> " );
            }

            
if  (xtr.NodeType  ==  XmlNodeType.Element  &&  xtr.LocalName  ==   " googleColorUrl " )
            {
                Response.Write(xtr.ReadString() 
+   " <br/> " );
            }

        }
    } 

 

目录
相关文章
|
2月前
|
XML 前端开发 Java
讲解SSM的xml文件
本文详细介绍了SSM框架中的xml配置文件,包括springMVC.xml和applicationContext.xml,涉及组件扫描、数据源配置、事务管理、MyBatis集成以及Spring MVC的视图解析器配置。
77 1
|
1月前
|
XML Android开发 数据格式
Eclipse 创建 XML 文件
Eclipse 创建 XML 文件
28 2
|
1月前
|
Java Maven
maven项目的pom.xml文件常用标签使用介绍
第四届人文,智慧教育与服务管理国际学术会议(HWESM 2025) 2025 4th International Conference on Humanities, Wisdom Education and Service Management
131 8
|
2月前
|
存储 C#
【C#】大批量判断文件是否存在的两种方法效率对比
【C#】大批量判断文件是否存在的两种方法效率对比
52 1
|
2月前
|
XML JavaScript Java
java与XML文件的读写
java与XML文件的读写
31 3
|
2月前
|
XML 存储 缓存
C#使用XML文件的详解及示例
C#使用XML文件的详解及示例
116 0
|
2月前
|
XML JSON 前端开发
C#使用HttpClient四种请求数据格式:json、表单数据、文件上传、xml格式
C#使用HttpClient四种请求数据格式:json、表单数据、文件上传、xml格式
558 0
|
2月前
|
XML 存储 Web App开发
查看 XML 文件
查看 XML 文件
|
1月前
|
C# 开发者
C# 一分钟浅谈:Code Contracts 与契约编程
【10月更文挑战第26天】本文介绍了 C# 中的 Code Contracts,这是一个强大的工具,用于通过契约编程增强代码的健壮性和可维护性。文章从基本概念入手,详细讲解了前置条件、后置条件和对象不变量的使用方法,并通过具体代码示例进行了说明。同时,文章还探讨了常见的问题和易错点,如忘记启用静态检查、过度依赖契约和性能影响,并提供了相应的解决建议。希望读者能通过本文更好地理解和应用 Code Contracts。
36 3
|
4天前
|
存储 安全 编译器
学懂C#编程:属性(Property)的概念定义及使用详解
通过深入理解和使用C#的属性,可以编写更清晰、简洁和高效的代码,为开发高质量的应用程序奠定基础。
31 12