zoukankan      html  css  js  c++  java
  • 转载:轻量级Config文件AppSettings节点编辑帮助类

    using System.Configuration;
    using System.Windows.Forms;
    
    namespace Allyn.Common
    {
        public class XmlHeper
        {
            ///<summary> 
            ///返回Config文件中appSettings配置节的value项  
            ///</summary> 
            ///<param name="strKey">节点Key</param> 
            ///<returns></returns> 
            public static string GetAppConfig(string strKey)
            {
                string file = Application.ExecutablePath;
                Configuration config = ConfigurationManager.OpenExeConfiguration(file);
    
                foreach (string key in config.AppSettings.Settings.AllKeys)
                {
                    if (key == strKey)
                    {
                        return config.AppSettings.Settings[strKey].Value.ToString();
                    }
                }
                return string.Empty;
            }
    
            ///<summary>  
            ///在Config文件中appSettings配置节增加一对键值对  
            ///</summary>  
            ///<param name="newKey">节点名称</param>  
            ///<param name="newValue">信值</param>  
            public static void UpdateAppConfig(string newKey, string newValue)
            {
                string file = System.Windows.Forms.Application.ExecutablePath;
                Configuration config = ConfigurationManager.OpenExeConfiguration(file);
    
                bool exist = false;
    
                foreach (string key in config.AppSettings.Settings.AllKeys)
                {
                    if (key == newKey) {  exist = true; }
                }
    
                if (exist)  { config.AppSettings.Settings.Remove(newKey); }
    
                config.AppSettings.Settings.Add(newKey, newValue);
                config.Save(ConfigurationSaveMode.Modified);
    
                ConfigurationManager.RefreshSection("appSettings");
            }
        }
    }

    转载:https://www.cnblogs.com/allyn/p/10178067.html

  • 相关阅读:
    vmware虚拟机 安装
    js中设置元素class的三种方法小结
    HTML可编辑的select
    视图和表的区别和联系
    数据库之常用函数
    数据库之Group By用法
    数据库之存储过程
    数据库内外连接讲解
    ExtJs知识点概述
    SpringMVC 400 Bad Request 问题
  • 原文地址:https://www.cnblogs.com/uftwkb24/p/10191935.html
Copyright © 2011-2022 走看看