程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> .Net2.0 使用ConfigurationManager讀寫配置文件

.Net2.0 使用ConfigurationManager讀寫配置文件

編輯:.NET實例教程
     .net1.1中如果需要靈活的操作和讀寫配置文件並不是十分方便,一般都會在項目中封裝一個配置文件管理類來進行讀寫操作。而在.Net2.0中使用ConfigurationManager 和WebConfigurationManager 類可以很好的管理配置文件,ConfigurationManager類在System.Configuration中,WebConfigurationManager在System.Web.Configuration中。根據MSDN的解釋,對於 Web 應用程序配置,建議使用 System.Web.Configuration.WebConfigurationManager 類,而不要使用 System.Configuration.ConfigurationManager 類。
  
  下面我給出一個簡單的例子說明如何使用WebConfigurationManager操作配置文件:
   //打開配置文件
   Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
   //獲取aPPSettings節點
   AppSettingsSection appSection = (AppSettingsSection)config.GetSection("aPPSettings");
   //在aPPSettings節點中添加元素
   aPPSection.Settings.Add("addkey1", "key1's value");
   aPPSection.Settings.Add("addkey2", "key2's value");
   config.Save();
  
  運行代碼之後可以看見配置文件中的改變:
  
  <aPPSettings>
   <add key="addkey1" value="key1's value" />
   <add key="addkey2" value="key2's value" />
  </aPPSettings>
  修改和刪除節點或屬性也非常方便:
  
   //打開配置文件
   Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
   //獲取aPPSettings節點
   AppSettingsSection appSection = (AppSettingsSection)config.GetSection("aPPSettings");
   //刪除aPPSettings節點中的元素
   aPPSection.Settings.Remove("addkey1");
   //修改aPPSettings節點中的元素
   aPPSection.Settings["addkey2"].Value = "Modify key2's value";
   config.Save();
  配置文件:
  <aPPSettings>
   <add key="addkey2" value="Modify key2's value" />
   </aPPSettings>
  參考:http://msdn2.microsoft.com/en-us/library/ms228060.ASPx 
  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved