修改XML文件的节点属性值


xml 文件内容:

 

<?xml version="1.0" encoding="utf-8"?>
<subtitles>
  <info>
    <content>最新通告:五一放假七天!请各教员悉知</content>
    <speed>4</speed>
    <color>red</color>
  </info>
</subtitles>

 

 

 

C#代码:

 

            XmlDocument xml = new XmlDocument();
            xml.Load(context.Server.MapPath("~/js/XMLFile.xml"));
            XmlNode xn = xml.DocumentElement;
            foreach (XmlNode node in xn.ChildNodes)
            {
                if (node.Name == "info")
                {
                    node["content"].InnerText = content;
                    node["speed"].InnerText = speed;
                    node["color"].InnerText = color;
                }
            }
            xml.Save(context.Server.MapPath("~/js/XMLFile.xml"));


 

 

另外两种办法:

 

修改xml字符串的某个节点的属性值,如下:

            XmlDocument doc = new XmlDocument();
            doc.LoadXml("<fsdlconfig userName=\"ss\" password=\"134\"/>");

            XmlAttribute att =(XmlAttribute)doc.SelectSingleNode("/fsdlconfig/@userName");
            Console.WriteLine(att.Value);
            att.Value = "test";
            string str = doc.OuterXml;

节点userName的值由原来的"ss",变成了"test",然后用doc.OuterXml保存修改后的xml为字符串。

另一种方式:

            XmlDocument doc = new XmlDocument();
            doc.LoadXml("<fsdlconfig userName=\"ss\" password=\"134\"/>");

            XmlElement att = (XmlElement)doc.FirstChild;
           att.SetAttribute("userName","test");
            string str = doc.OuterXml;

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值