Method of C Reading and Writing config Configuration File

  • 2021-11-13 02:29:19
  • OfStack

As shown below:


<?xml version="1.0" encoding="utf-8" ?>
<configuration>
 <appSettings>
  <add key="ServerIP" value="127.0.0.1"></add>
  <add key="DataBase" value="WarehouseDB"></add>
  <add key="user" value="sa"></add>
  <add key="password" value="sa"></add>
 </appSettings>
</configuration>

Read and write classes for config configuration files


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Configuration;
using System.ServiceModel;
using System.ServiceModel.Configuration;

namespace NetUtilityLib
{
  public static class ConfigHelper
  {
    // According to the connection string name connectionName Returns a data connection string  
    public static string GetConnectionStringsConfig(string connectionName)
    {
      // Specify config File reading 
      string file = System.Windows.Forms.Application.ExecutablePath;
      System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(file);
      string connectionString =
        config.ConnectionStrings.ConnectionStrings[connectionName].ConnectionString.ToString();
      return connectionString;
    }

    ///<summary> 
    /// Update connection string  
    ///</summary> 
    ///<param name="newName"> Connection string name </param> 
    ///<param name="newConString"> Connection string content </param> 
    ///<param name="newProviderName"> Data provider name </param> 
    public static void UpdateConnectionStringsConfig(string newName, string newConString, string newProviderName)
    {
      // Specify config File reading 
      string file = System.Windows.Forms.Application.ExecutablePath;
      Configuration config = ConfigurationManager.OpenExeConfiguration(file);

      bool exist = false; // Record whether the connection string already exists  
      // If the connection string you want to change already exists  
      if (config.ConnectionStrings.ConnectionStrings[newName] != null)
      {
        exist = true;
      }
      //  If the connection string already exists, delete it first  
      if (exist)
      {
        config.ConnectionStrings.ConnectionStrings.Remove(newName);
      }
      // New 1 Connection string instances  
      ConnectionStringSettings mySettings =
        new ConnectionStringSettings(newName, newConString, newProviderName);
      //  Add a new connection string to the configuration file . 
      config.ConnectionStrings.ConnectionStrings.Add(mySettings);
      //  Save the changes made to the configuration file  
      config.Save(ConfigurationSaveMode.Modified);
      //  To force the reload of the configuration file ConnectionStrings Configuration section  
      ConfigurationManager.RefreshSection("ConnectionStrings");
    }

    ///<summary> 
    /// Return *.exe.config In a file appSettings Configure section's value Items  
    ///</summary> 
    ///<param name="strKey"></param> 
    ///<returns></returns> 
    public static string GetAppConfig(string strKey)
    {
      string file = System.Windows.Forms.Application.ExecutablePath;
      Configuration config = ConfigurationManager.OpenExeConfiguration(file);
      foreach (string key in config.AppSettings.Settings.AllKeys)
      {
        if (key == strKey)
        {
          return config.AppSettings.Settings[strKey].Value.ToString();
        }
      }
      return null;
    }

    ///<summary> 
    /// In *.exe.config In a file appSettings Configuration section increase 1 Pair key-value pair  
    ///</summary> 
    ///<param name="newKey"></param> 
    ///<param name="newValue"></param> 
    public static void UpdateAppConfig(string newKey, string newValue)
    {
      string file = System.Windows.Forms.Application.ExecutablePath;
      Configuration config = ConfigurationManager.OpenExeConfiguration(file);
      bool exist = false;
      foreach (string key in config.AppSettings.Settings.AllKeys)
      {
        if (key == newKey)
        {
          exist = true;
        }
      }
      if (exist)
      {
        config.AppSettings.Settings.Remove(newKey);
      }
      config.AppSettings.Settings.Add(newKey, newValue);
      config.Save(ConfigurationSaveMode.Modified);
      ConfigurationManager.RefreshSection("appSettings");
    }

    //  Modify system.serviceModel Object for all service endpoints under IP Address 
    public static void UpdateServiceModelConfig(string configPath, string serverIP)
    {
      Configuration config = ConfigurationManager.OpenExeConfiguration(configPath);
      ConfigurationSectionGroup sec = config.SectionGroups["system.serviceModel"];
      ServiceModelSectionGroup serviceModelSectionGroup = sec as ServiceModelSectionGroup;
      ClientSection clientSection = serviceModelSectionGroup.Client;
      foreach (ChannelEndpointElement item in clientSection.Endpoints)
      {
        string pattern = @"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b";
        string address = item.Address.ToString();
        string replacement = string.Format("{0}", serverIP);
        address = Regex.Replace(address, pattern, replacement);
        item.Address = new Uri(address);
      }

      config.Save(ConfigurationSaveMode.Modified);
      ConfigurationManager.RefreshSection("system.serviceModel");
    }

    //  Modify applicationSettings Medium App.Properties.Settings Object served in the IP Address 
    public static void UpdateConfig(string configPath, string serverIP)
    {
      Configuration config = ConfigurationManager.OpenExeConfiguration(configPath);
      ConfigurationSectionGroup sec = config.SectionGroups["applicationSettings"];
      ConfigurationSection configSection = sec.Sections["DataService.Properties.Settings"];
      ClientSettingsSection clientSettingsSection = configSection as ClientSettingsSection;
      if (clientSettingsSection != null)
      {
        SettingElement element1 = clientSettingsSection.Settings.Get("DataService_SystemManagerWS_SystemManagerWS");
        if (element1 != null)
        {
          clientSettingsSection.Settings.Remove(element1);
          string oldValue = element1.Value.ValueXml.InnerXml;
          element1.Value.ValueXml.InnerXml = GetNewIP(oldValue, serverIP);
          clientSettingsSection.Settings.Add(element1);
        }

        SettingElement element2 = clientSettingsSection.Settings.Get("DataService_EquipManagerWS_EquipManagerWS");
        if (element2 != null)
        {
          clientSettingsSection.Settings.Remove(element2);
          string oldValue = element2.Value.ValueXml.InnerXml;
          element2.Value.ValueXml.InnerXml = GetNewIP(oldValue, serverIP);
          clientSettingsSection.Settings.Add(element2);
        }
      }
      config.Save(ConfigurationSaveMode.Modified);
      ConfigurationManager.RefreshSection("applicationSettings");
    }

    private static string GetNewIP(string oldValue, string serverIP)
    {
      string pattern = @"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b";
      string replacement = string.Format("{0}", serverIP);
      string newvalue = Regex.Replace(oldValue, pattern, replacement);
      return newvalue;
    }
  }
}

The test code is as follows:


class Program
  {
    static void Main(string[] args)
    {
      try
      {
        //string file = System.Windows.Forms.Application.ExecutablePath + ".config";
        //string file1 = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
        string serverIP = ConfigHelper.GetAppConfig("ServerIP");
        string db = ConfigHelper.GetAppConfig("DataBase");
        string user = ConfigHelper.GetAppConfig("user");
        string password = ConfigHelper.GetAppConfig("password");

        Console.WriteLine(serverIP);
        Console.WriteLine(db);
        Console.WriteLine(user);
        Console.WriteLine(password);

        ConfigHelper.UpdateAppConfig("ServerIP", "192.168.1.11");
        string newIP = ConfigHelper.GetAppConfig("ServerIP");
        Console.WriteLine(newIP);

        Console.ReadKey();
      }
      catch (Exception ex)
      {
        Console.WriteLine(ex.Message);
      }
    }
  }

Related articles: