轻量级Config文件AppSettings节点编辑帮助类
2018-12-27 07:43:23来源:博客园 阅读 ()
1 using System.Configuration; 2 using System.Windows.Forms; 3 4 namespace Allyn.Common 5 { 6 public class XmlHeper 7 { 8 ///<summary> 9 ///返回Config文件中appSettings配置节的value项 10 ///</summary> 11 ///<param name="strKey">节点Key</param> 12 ///<returns>值</returns> 13 public static string GetAppConfig(string strKey) 14 { 15 string file = Application.ExecutablePath; 16 Configuration config = ConfigurationManager.OpenExeConfiguration(file); 17 18 foreach (string key in config.AppSettings.Settings.AllKeys) 19 { 20 if (key == strKey) 21 { 22 return config.AppSettings.Settings[strKey].Value.ToString(); 23 } 24 } 25 return string.Empty; 26 } 27 28 ///<summary> 29 ///在Config文件中appSettings配置节增加一对键值对 30 ///</summary> 31 ///<param name="newKey">节点名称</param> 32 ///<param name="newValue">信值</param> 33 public static void UpdateAppConfig(string newKey, string newValue) 34 { 35 string file = System.Windows.Forms.Application.ExecutablePath; 36 Configuration config = ConfigurationManager.OpenExeConfiguration(file); 37 38 bool exist = false; 39 40 foreach (string key in config.AppSettings.Settings.AllKeys) 41 { 42 if (key == newKey) { exist = true; } 43 } 44 45 if (exist) { config.AppSettings.Settings.Remove(newKey); } 46 47 config.AppSettings.Settings.Add(newKey, newValue); 48 config.Save(ConfigurationSaveMode.Modified); 49 50 ConfigurationManager.RefreshSection("appSettings"); 51 } 52 } 53 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:SignalR2简易数据看板演示
- asp.net源程序编译为dll文件并调用的实现过程 2020-03-29
- 如何创建和读取xml文件 2020-03-10
- asp.net网页里面为什么找不到CS文件 2020-03-09
- ASP.NET实现大文件上传功能 2020-03-08
- .Net MVC网站中配置文件的读写 2020-02-28
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash