讀配置很簡單,可以用ConfigurationManager.AppSettings[key] 來讀出,
可是寫設定檔時,如果寫成這樣
ConfigurationManager.AppSettings[key] = "111";
總是提示唯讀,那麼該怎麼辦呢?
using System;<br />using System.Collections.Generic;<br />using System.Text;<br />using System.Configuration;</p><p>namespace BQKJ.Common<br />{<br /> /// <summary><br /> /// 對exe.Config檔案中的appSettings段進行讀寫配置操作<br /> /// 注意:調試時,寫操作將寫在vhost.exe.config檔案中<br /> /// </summary><br /> public class ConfigAppSettings<br /> {<br /> /// <summary><br /> /// 寫入值<br /> /// </summary><br /> /// <param name="key"></param><br /> /// <param name="value"></param><br /> public static void SetValue(string key, string value)<br /> {<br /> //增加的內容寫在appSettings段下 <add key="RegCode" value="0"/><br /> System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);<br /> if (config.AppSettings.Settings[key] == null)<br /> {<br /> config.AppSettings.Settings.Add(key, value);<br /> }<br /> else<br /> {<br /> config.AppSettings.Settings[key].Value = value;<br /> }<br /> config.Save(ConfigurationSaveMode.Modified);<br /> ConfigurationManager.RefreshSection("appSettings");//重新載入新的設定檔<br /> }</p><p> /// <summary><br /> /// 讀取指定key的值<br /> /// </summary><br /> /// <param name="key"></param><br /> /// <returns></returns><br /> public static string GetValue(string key)<br /> {<br /> System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);<br /> if (config.AppSettings.Settings[key] == null)<br /> return "";<br /> else<br /> return config.AppSettings.Settings[key].Value;<br /> }</p><p> }<br />}<br />
其實也很簡單,用這兩個封裝過的方法就可以了。
需要注意的是,在IDE調試時,寫入的設定檔其實是寫在了.vshost.exe.config檔案中,所以你在.exe.config中是看不到的。只有直接運行exe檔案時,才會正確寫入到.exe.config中。