一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

asp.net c#操作xml文档的基本代码

时间:2011-10-10 编辑:简简单单 来源:一聚教程网

c#处理代码

 代码如下 复制代码
void TestXML()
{
XmlDocument doc = new XmlDocument();
string path = "http://www.111com.net/rss.xml";
try
{
doc.Load(path);
//1、读取单个节点的数据
XmlNode node = doc.SelectSingleNode("PersonF");
//2、读取多个节点的数据
XmlNodeList nodeList1 = doc.SelectNodes("PersonF/person");
//3.1 读取具体节点的具体值 如:属性为Person2的第二个节点Name的InnerText
XmlNodeList nodeList = doc.DocumentElement.GetElementsByTagName("person");
foreach (XmlNode node2 in nodeList1) //当然也能用nodeList的值
{
if (node2.Attributes["Name"].InnerText == "Person2")
{
Console.WriteLine(node2.ChildNodes[1].InnerText);
}
}
//3.2 读取ID为2所在的节点第二个子节点Name的InnerText
XmlNode node3 = doc.SelectSingleNode("PersonF/person[ID=2]");
string strNode3 = node3.ChildNodes[1].InnerText;
//3.3利用下面的方法可以找到ID为2的节点
XmlNodeList nodeList2 = doc.SelectNodes("//person//ID");
XmlNode node4 = null;
foreach (XmlNode node5 in nodeList2)
{
if (node5.InnerText == "2")
{
node4 = node5;
break;
}
}
Console.WriteLine(node4.InnerText);
//4、读取节点的属性
string Name = node.Attributes["Name"].InnerText;
//5 修改节点的属性
node.Attributes["Name"].InnerText = "work hard work smart!";
doc.Save(path);
//6 添加自定义的节点
XmlTextReader reader = new XmlTextReader(path);
XmlElement root = doc.DocumentElement;//获取根节点
XmlElement tagOuter = doc.CreateElement("person");
XmlElement tagIN = doc.CreateElement("Name");
tagIN.InnerText = "work hard work smart!";
tagOuter.AppendChild(tagIN);
root.AppendChild(tagOuter);//添加tagOuter到XML文件的最后
reader.Close();
doc.Save(path);
}
catch (System.Exception e)
{
throw new Exception(e.Message);
}
}

xml文档

 

 代码如下 复制代码




1
XiaoA
59


2
XiaoB
29


3
XiaoC
103


4
XiaoD
59

热门栏目