本文的主要模块为:
① :生成xml文件
② :遍历xml文件的节点信息
③ :修改xml文件的节点信息
④ :向xml文件添加节点信息
⑤ :删除指定xml文件的节点信息
·假设我们需要设计出这样的一个xml文件来存储相应的信息,如下所示:
<Computers>
<Computer ID="11111111" Description="Made in China">
<name>Lenovo</name>
<price>5000</price>
</Computer>
<Computer ID="2222222" Description="Made in USA">
<name>IBM</name>
<price>10000</price>
</Computer>
</Computers>
那么如何生成这个xml文件?又怎么读取这个xml文件的节点信息,以及如何对这个xml文件的节点信息作相应的操作?请看如下代码示例:
【注:因为我们要使用xml相关的语法和方法,所以一定要引入命名空间 】
using System;
using ;
using ;
using ;
using ;
namespace OperateXML
{
class Program
{
static void Main(string[] args)
{
try
{
//xml文件存储路径
string myXMLFilePath = "E:\\";
//生成xml文件
GenerateXMLFile(myXMLFilePath);
//遍历xml文件的信息
GetXMLInformation(myXMLFilePath);
//修改xml文件的信息
ModifyXmlInformation(myXMLFilePath);
//向xml文件添加节点信息
AddXmlInformation(myXMLFilePath);
//删除指定节点信息
DeleteXmlInformation(myXMLFilePath);
}
catch (Exception ex)
{
(());
}
}
private static void GenerateXMLFile(string xmlFilePath)
{
try
{
//初始化一个xml实例
XmlDocument myXmlDoc = new XmlDocument();
//创建xml的根节点
XmlElement rootElement = ("Computers");
//将根节点加入到xml文件中(AppendChild)
(rootElement);
//初始化第一层的第一个子节点
XmlElement firstLevelElement1 = ("Computer");
//填充第一层的第一个子节点的属性值(SetAttribute)
("ID", "11111111");
("Description", "Made in China");
//将第一层的第一个子节点加入到根节点下
(firstLevelElement1);
//初始化第二层的第一个子节点
XmlElement secondLevelElement11 = ("name");
//填充第二层的第一个子节点的值(InnerText)
= "Lenovo";
(secondLevelElement11);
XmlElement secondLevelElement12 = ("price");
= "5000";
(secondLevelElement12);
XmlElement firstLevelElement2 = ("Computer");
("ID", "2222222");
("Description", "Made in USA");
(firstLevelElement2);
XmlElement secondLevelElement21 = ("name");
= "IBM";
(secondLevelElement21);
XmlElement secondLevelElement22 = ("price");
= "10000";
(secondLevelElement22);
//将xml文件保存到指定的路径下
(xmlFilePath);
}
catch (Exception ex)
{
(());
}
}
private static void GetXMLInformation(string xmlFilePath)
{
try
{
//初始化一个xml实例
XmlDocument myXmlDoc = new XmlDocument();
//加载xml文件(参数为xml文件的路径)
(xmlFilePath);
//获得第一个姓名匹配的节点(SelectSingleNode):此xml文件的根节点
XmlNode rootNode = ("Computers");
//分别获得该节点的InnerXml和OuterXml信息
string innerXmlInfo = ();
string outerXmlInfo = ();
//获得该节点的子节点(即:该节点的第一层子节点)
XmlNodeList firstLevelNodeList = ;
foreach (XmlNode node in firstLevelNodeList)
{
//获得该节点的属性集合
XmlAttributeCollection attributeCol = ;
foreach (XmlAttribute attri in attributeCol)
{
//获取属性名称与属性值
string name = ;
string value = ;
("{0} = {1}", name, value);
}
//判断此节点是否还有子节点
if ()
{
//获取该节点的第一个子节点
XmlNode secondLevelNode1 = ;
//获取该节点的名字
string name = ;
//获取该节点的值(即:InnerText)
string innerText = ;
("{0} = {1}", name, innerText);
//获取该节点的第二个子节点(用数组下标获取)
XmlNode secondLevelNode2 = [1];
name = ;
innerText = ;
("{0} = {1}", name, innerText);
}
}
}
catch (Exception ex)
{
(());
}
}
private static void ModifyXmlInformation(string xmlFilePath)
{
try
{
XmlDocument myXmlDoc = new XmlDocument();
(xmlFilePath);
XmlNode rootNode = ;
XmlNodeList firstLevelNodeList = ;
foreach (XmlNode node in firstLevelNodeList)
{
//修改此节点的属性值
if (["Description"].("Made in USA"))
{
["Description"].Value = "Made in HongKong";
}
}
//要想使对xml文件所做的修改生效,必须执行以下Save方法
(xmlFilePath);
}
catch (Exception ex)
{
(());
}
}
private static void AddXmlInformation(string xmlFilePath)
{
try
{
XmlDocument myXmlDoc = new XmlDocument();
(xmlFilePath);
//添加一个带有属性的节点信息
foreach (XmlNode node in )
{
XmlElement newElement = ("color");
= "black";
("IsMixed", "Yes");
(newElement);
}
//保存更改
(xmlFilePath);
}
catch (Exception ex)
{
(());
}
}
private static void DeleteXmlInformation(string xmlFilePath)
{
try
{
XmlDocument myXmlDoc = new XmlDocument();
(xmlFilePath);
foreach (XmlNode node in )
{
//记录该节点下的最后一个子节点(简称:最后子节点)
XmlNode lastNode = ;
//删除最后子节点下的左右子节点
();
//删除最后子节点
(lastNode);
}
//保存对xml文件所做的修改
(xmlFilePath);
}
catch (Exception ex)
{
(());
}
}
}
}
上面的这个例子,首先是通过GenerateXMLFile方法在E盘创建出了我们预想的xml文件;然后通过GetXMLInformation方法对刚刚生成的xml文件进行了信息的读取;
之后通过ModifyXmlInformation方法对xml文件信息作出相应的修改(<Computer ID="2222222" Description="Made in USA">
修改成为<Computer ID="2222222" Description="Made in HongKong">);再之后通过AddXmlInformation方法向xml文件中添加了一个带有属性值的color节点;
最后通过DeleteXmlInformation方法将刚刚添加上的color节点删除掉。至此完成了对xml文件的基本操作:创建、读取、修改、添加、删除。
【注1:想要将对xml文件所做的任何修改生效的话,必须调用Save方法,否则我们所做的修改不会保存】
【注2:我们在创建节点的时候用的是XmlElement,但是读取节点信息的时候却用的是XmlNode,这里强调一点:XmlElement是XmlNode的继承,可以调用更多的方法实现相应所需的功能】
最后简单集中的总结一下对xml进行操作的基本方法,如下所示:
//所需要添加的命名空间
using ;
//初始化一个xml实例
XmlDocument xml=new XmlDocument();
//导入指定xml文件
(“xml文件路径path”);
//指定一个节点
XmlNode root=("节点名称");
//获取节点下所有直接子节点
XmlNodeList childlist=;
//判断该节点下是否有子节点
;
//获取同名同级节点集合
XmlNodeList nodelist=("节点名称");
//生成一个新节点
XmlElement node=("节点名称");
//将节点加到指定节点下,作为其子节点
(node);
//将节点加到指定节点下某个子节点前
(node,[i]);
//为指定节点的新建属性并赋值
("id","11111");
//为指定节点添加子节点
(node);
//获取指定节点的指定属性值
string id=["id"].Value;
//获取指定节点中的文本
string content=;
//保存XML文件
(“xml文件存储的路径path”);
第二种:
using ;
//初始化一个xml实例
XmlDocument xml=new XmlDocument();
//导入指定xml文件
(path);
(("~/file/"));
//指定一个节点
XmlNode root=("/root");
//获取节点下所有直接子节点
XmlNodeList childlist=;
//判断该节点下是否有子节点
;
//获取同名同级节点集合
XmlNodeList nodelist=("/Root/News");
//生成一个新节点
XmlElement node=("News");
//将节点加到指定节点下,作为其子节点
(node);
//将节点加到指定节点下某个子节点前
(node,[i]);
//为指定节点的新建属性并赋值
("id","11111");
//为指定节点添加子节点
(node);
//获取指定节点的指定属性值
string id=["id"].Value;
//获取指定节点中的文本
string content=;
//保存XML文件
string path=("~/file/");
(path);
//or use :(("~/file/"));
二、具体实例
在C#.net中如何操作XML
需要添加的命名空间:
using ;
定义几个公共对象:
XmlDocument xmldoc ;
XmlNode xmlnode ;
XmlElement xmlelem ;
1,创建到服务器同名目录下的xml文件:
方法一:
xmldoc = new XmlDocument ( ) ;
//加入XML的声明段落,<?xml version="1.0" encoding="gb2312"?>
XmlDeclaration xmldecl;
xmldecl = ("1.0","gb2312",null);
( xmldecl);
//加入一个根元素
xmlelem = ( "" , "Employees" , "" ) ;
( xmlelem ) ;
//加入另外一个元素
for(int i=1;i<3;i++)
{
XmlNode root=("Employees");//查找<Employees>
XmlElement xe1=("Node");//创建一个<Node>节点
("genre","李赞红");//设置该节点genre属性
("ISBN","2-3631-4");//设置该节点ISBN属性
XmlElement xesub1=("title");
="CS从入门到精通";//设置文本节点
(xesub1);//添加到<Node>节点中
XmlElement xesub2=("author");
="候捷";
(xesub2);
XmlElement xesub3=("price");
="58.3";
(xesub3);
(xe1);//添加到<Employees>节点中
}
//保存创建好的XML文档
( ("") ) ;
//
结果:在同名目录下生成了名为的文件,内容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
</Employees>
方法二:
XmlTextWriter xmlWriter;
string strFilename = ("") ;
xmlWriter = new XmlTextWriter(strFilename,);//创建一个xml文档
= ;
();
("Employees");
("Node");
("genre","李赞红");
("ISBN","2-3631-4");
("title");
("CS从入门到精通");
();
("author");
("候捷");
();
("price");
("58.3");
();
();
();
//
结果:
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
</Employees>
2,添加一个结点:
XmlDocument xmlDoc=new XmlDocument();
((""));
XmlNode root=("Employees");//查找<Employees>
XmlElement xe1=("Node");//创建一个<Node>节点
("genre","张三");//设置该节点genre属性
("ISBN","1-1111-1");//设置该节点ISBN属性
XmlElement xesub1=("title");
="C#入门帮助";//设置文本节点
(xesub1);//添加到<Node>节点中
XmlElement xesub2=("author");
="高手";
(xesub2);
XmlElement xesub3=("price");
="158.3";
(xesub3);
(xe1);//添加到<Employees>节点中
( ("") );
//
结果:在xml原有的内容里添加了一个结点,内容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="张三" ISBN="1-1111-1">
<title>C#入门帮助</title>
<author>高手</author>
<price>158.3</price>
</Node>
</Employees>
3,修改结点的值(属性和子结点):
XmlDocument xmlDoc=new XmlDocument();
( ("") );
XmlNodeList nodeList=("Employees").ChildNodes;//获取Employees节点的所有子节点
foreach(XmlNode xn in nodeList)//遍历所有子节点
{
XmlElement xe=(XmlElement)xn;//将子节点类型转换为XmlElement类型
if(("genre")=="张三")//如果genre属性值为“张三”
{
("genre","update张三");//则修改该属性为“update张三”
XmlNodeList nls=;//继续获取xe子节点的所有子节点
foreach(XmlNode xn1 in nls)//遍历
{
XmlElement xe2=(XmlElement)xn1;//转换类型
if(=="author")//如果找到
{
="亚胜";//则修改
}
}
}
}
( ("") );//保存。
//
结果:将原来的所有结点的信息都修改了,xml的内容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="update张三" ISBN="1-1111-1">
<title>C#入门帮助</title>
<author>亚胜</author>
<price>158.3</price>
</Node>
</Employees>
4,修改结点(添加结点的属性和添加结点的自结点):
XmlDocument xmlDoc=new XmlDocument();
( ("") );
XmlNodeList nodeList=("Employees").ChildNodes;//获取Employees节点的所有子节点
foreach(XmlNode xn in nodeList)
{
XmlElement xe=(XmlElement)xn;
("test","111111");
XmlElement xesub=("flag");
="1";
(xesub);
}
( ("") );
//
结果:每个结点的属性都添加了一个,子结点也添加了一个,内容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4" test="111111">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
<flag>1</flag>
</Node>
<Node genre="李赞红" ISBN="2-3631-4" test="111111">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
<flag>1</flag>
</Node>
<Node genre="update张三" ISBN="1-1111-1" test="111111">
<title>C#入门帮助</title>
<author>亚胜</author>
<price>158.3</price>
<flag>1</flag>
</Node>
</Employees>
5,删除结点中的某一个属性:
XmlDocument xmlDoc=new XmlDocument();
( ("") );
XmlNodeList xnl=("Employees").ChildNodes;
foreach(XmlNode xn in xnl)
{
XmlElement xe=(XmlElement)xn;
("genre");//删除genre属性
XmlNodeList nls=;//继续获取xe子节点的所有子节点
foreach(XmlNode xn1 in nls)//遍历
{
XmlElement xe2=(XmlElement)xn1;//转换类型
if(=="flag")//如果找到
{
(xe2);//则删除
}
}
}
( ("") );
//]
结果:删除了结点的一个属性和结点的一个子结点,内容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node ISBN="2-3631-4" test="111111">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node ISBN="2-3631-4" test="111111">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node ISBN="1-1111-1" test="111111">
<title>C#入门帮助</title>
<author>亚胜</author>
<price>158.3</price>
</Node>
</Employees>
6,删除结点:
XmlDocument xmlDoc=new XmlDocument();
( ("") );
XmlNode root=("Employees");
XmlNodeList xnl=("Employees").ChildNodes;
for(int i=0;i<;i++)
{
XmlElement xe=(XmlElement)(i);
if(("genre")=="张三")
{
(xe);
if(i<)i=i-1;
}
}
( ("") );
//]
结果:删除了符合条件的所有结点,原来的内容:
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="张三" ISBN="1-1111-1">
<title>C#入门帮助</title>
<author>高手</author>
<price>158.3</price>
</Node>
<Node genre="张三" ISBN="1-1111-1">
<title>C#入门帮助</title>
<author>高手</author>
<price>158.3</price>
</Node>
</Employees>
删除后的内容:
<?xml version="1.0" encoding="gb2312"?>
<Employees>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
<Node genre="李赞红" ISBN="2-3631-4">
<title>CS从入门到精通</title>
<author>候捷</author>
<price>58.3</price>
</Node>
</Employees>
7,按照文本文件读取xml
myFile =new
((""),);
//注意
string myString = ();//myString是读出的字符串
();
三、高级应用
/*读取xml数据 两种xml方式*/
<aaa>
<bb>something</bb>
<cc>something</cc>
</aaa>
<aaa>
<add key="123" value="321"/>
</aaa>
/*第一种方法*/
("your xmlfile name");
("bb");
("cc");
("your xmlfile name");
/*第二种方法*/
<aaa>
<add key="123" value="321"/>
</aaa>
如果我要找到123然后取到321应该怎么写呢?
using ;
XmlDataDocument xmlDoc = new ();
(@"c:/");
XmlElement elem = ("add");
string str = ["value"].Value
/*第三种方法: SelectSingleNode 读取两种格式的xml *---/
--------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<ConnectionString>Data Source=yf; user id=ctm_dbo;password=123</ConnectionString>
</appSettings>
</configuration>
--------------------------------------------------------------------------
XmlDocument doc = new XmlDocument();
(strXmlName);
XmlNode node=("/configuration/appSettings/ConnectionString");
if(node!=null)
{
string k1=; //null
string k2=;//Data Source=yf; user id=ctm_dbo;password=123
string k3=;//Data Source=yf; user id=ctm_dbo;password=123
node=null;
}
********************************************************************
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ConnectionString" value="Data Source=yf; user id=ctm_dbo;password=123" />
</appSettings>
</configuration>
**--------------------------------------------------------------------**
XmlNode node=("/configuration/appSettings/add");
if(node!=null)
{
string k=["key"].Value;
string v=["value"].Value;
node=null;
}
*--------------------------------------------------------------------*
XmlNode node=("/configuration/appSettings/add");
if(node!=null)
{
XmlNodeReader nr=new XmlNodeReader(node);
();
//检查当前节点是否是内容节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。
("value");
string s=;
node=null;
}