码迷,mamicode.com
首页 > 移动开发 > 详细

关于winform中*.exe.config中的appSettings的节点的读取与修改

时间:2015-10-22 12:05:05      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

       //读取到这个节点
       string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); string comNumber = config.AppSettings.Settings["comNumber"].Value.ToString(); comboBox1.SelectedItem = comNumber;        //设置这个节点方法1,亲测可行 string file = System.Windows.Forms.Application.ExecutablePath; Configuration config = ConfigurationManager.OpenExeConfiguration(file); bool exist = false;//记录这个com端口值是否存在 if (config.AppSettings.Settings["comNumber"] != null) { exist = true; } if (exist) { config.AppSettings.Settings.Remove("comNumber"); } config.AppSettings.Settings.Add("comNumber", comNO); config.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings");         
      
//方法2,因为上方法可行,这个并没有测试 //Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); //config.AppSettings.Settings. //config.AppSettings.Settings.Add("comNumber", comNO); //config.Save(ConfigurationSaveMode.Full); //ConfigurationManager.RefreshSection("appSettings");

 

导入的是一个System.Configuration的,

同样的connectionString也是差不多的,这里没有摘录,网上都是

关于winform中*.exe.config中的appSettings的节点的读取与修改

标签:

原文地址:http://www.cnblogs.com/qq657615799/p/4900113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!