如何用c#讀寫設定檔

來源:互聯網
上載者:User

讀配置很簡單,可以用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中。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.