C#读写配置文件

C#读取配置文件

在程序中读取和更新App.config中的配置信息:

  



  
    
  
  
    
  

 

1,添加引用System.Configuration;

C#读写配置文件_第1张图片

2,添加using System.Configuration;

3,代码

string connStr = "";          
ConfigurationManager.RefreshSection("AppSettings");    
connStr = System.Configuration.ConfiguratonManager.AppSettings["conn"];  
// 刷新应用程序配置文件的节点,这样会重新从文件读取,用于在程序运行过程中改了配置信息
ConfigurationManager.RefreshSection("AppSettings");

4,key="key",key的值不区分大小写,即conn和CONN、coNN都一样可以读取到。

 

写配置文件:

// Open App.Config of executable
    Configuration config = 
        ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
    // You need to remove the old settings object before you can replace it
    if (isModified)
    {
        config.AppSettings.Settings.Remove(newKey);
    }    
    // Add an Application Setting.
    config.AppSettings.Settings.Add(newKey,newValue);   
    // Save the changes in App.config file.
    config.Save(ConfigurationSaveMode.Modified);
    // Force a reload of a changed section.
    ConfigurationManager.RefreshSection("appSettings");
有坑:调试运行的时候,保存的结果在xxxx.vshost.exe.Config而不是xxxx.exe.Config(xxxx是程序名称),所以不要以为程序没写对哈。

 

你可能感兴趣的:(.NET)