我有一个XML文件(web.config),我需要编辑每个标记的value属性,取决于键名...
这是XML文件的一个示例:
<appSettings>
<add key="A1" value="Hi" />
<add key="B1" value="Hello" />
</appSettings>
我的意思是,我怎样才能更改“hi”&amp; “hello”使用键属性(A1&amp; B1)??
非常感谢
答案 0 :(得分:5)
试试这段代码,它运作正常:
XmlDocument doc = new XmlDocument();
doc.Load("Your.xml");
XmlNodeList elementList = doc.GetElementsByTagName("add");
for (int i = 0; i < elementList.Count; i++)
{
if(elementList[i].Attributes["key"].Value == "A1")
elementList[i].Attributes["value"].Value = "NewValue";
}
答案 1 :(得分:1)
如果您只想编辑应用程序配置文件 这个功能可以帮到你
private static void SaveConfig(string KeyName, string value)
{
System.Configuration.ConfigurationManager.AppSettings[KeyName] = value;
System.Configuration.Configuration config = System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Windows.Forms.Application.ExecutablePath);
System.Configuration.AppSettingsSection ass = config.AppSettings;
if (ass.Settings[KeyName] != null)
ass.Settings[KeyName].Value = value;
else
ass.Settings.Add(KeyName, value);
config.Save();
}
通过调用SaveConfig(“key”,“newvalue”),您可以查找配置值