• winform设置App.config节点值



    //winform设置App.config配置节点(非debug目录配置文件)如上图
    public
    static bool ChangeConfig(string AppKey, string AppValue) { bool result = true; try { XmlDocument xDoc = new XmlDocument(); //获取App.config文件绝对路径 String basePath = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; basePath = basePath.Substring(0, basePath.Length - 10); String path = basePath + "App.config"; xDoc.Load(path); XmlNode xNode; XmlElement xElem1; XmlElement xElem2; //修改完文件内容,还需要修改缓存里面的配置内容,使得刚修改完即可用 //如果不修改缓存,需要等到关闭程序,在启动,才可使用修改后的配置信息 Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); xNode = xDoc.SelectSingleNode("//appSettings"); xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']"); if (xElem1 != null) { xElem1.SetAttribute("value", AppValue); cfa.AppSettings.Settings[AppKey].Value = AppValue; } else { xElem2 = xDoc.CreateElement("add"); xElem2.SetAttribute("key", AppKey); xElem2.SetAttribute("value", AppValue); xNode.AppendChild(xElem2); cfa.AppSettings.Settings.Add(AppKey, AppValue); } //改变缓存中的配置文件信息(读取出来才会是最新的配置) cfa.Save(); ConfigurationManager.RefreshSection("appSettings"); xDoc.Save(path); } catch (Exception ex) { result = false; } return result; }
  • 相关阅读:
    326周日去找书
    新视野大学英语-Book1
    预编译头文件来自编译器的早期版本,或者预编译头为 C++ 而在 C 中使用它(或相反)
    自定义GRUB主题
    Linux安装CMake
    Linux编译安装Apache
    @Scheduled注解
    熵权可拓物元模型
    Linux更新Python3.8
    Linux下更新GCC
  • 原文地址:https://www.cnblogs.com/romanticcrystal/p/13439858.html
Copyright © 2020-2023  润新知