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字符串的某個節(jié)點的屬性值,如下:
復制代碼 代碼如下:
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;
節(jié)點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;
您可能感興趣的文章:- Python獲取任意xml節(jié)點值的方法
- python操作xml文件詳細介紹
- 簡單介紹使用Python解析并修改XML文檔的方法
- 詳解在Python程序中解析并修改XML內容的方法
- python處理xml文件的方法小結
- 詳解 Python 讀寫XML文件的實例
- 對python修改xml文件的節(jié)點值方法詳解