最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

詳解C#如何讀寫config配置文件

 更新時(shí)間:2017年12月02日 11:01:31   作者:阿凡盧  
這篇文章主要介紹了詳解C#如何讀寫config配置文件,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

配置文件概述:

應(yīng)用程序配置文件是標(biāo)準(zhǔn)的 XML 文件,XML 標(biāo)記和屬性是區(qū)分大小寫的。它是可以按需要更改的,開發(fā)人員可以使用配置文件來更改設(shè)置,而不必重編譯應(yīng)用程序。配置文件的根節(jié)點(diǎn)是configuration。我們經(jīng)常訪問的是appSettings,它是由.Net預(yù)定義的配置節(jié)。我們經(jīng)常使用的配置文件的架構(gòu)是客訴下面的形式。先大概有個(gè)印象,通過后面的實(shí)例會有一個(gè)比較清楚的認(rèn)識。下面的“配置節(jié)”可以理解為進(jìn)行配置一個(gè)XML的節(jié)點(diǎn)。

對于一個(gè)config文件:

<?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> 

對config配置文件的讀寫類:

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
 {
  //依據(jù)連接串名字connectionName返回?cái)?shù)據(jù)連接字符串 
  public static string GetConnectionStringsConfig(string connectionName)
  {
   //指定config文件讀取
   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> 
  ///更新連接字符串 
  ///</summary> 
  ///<param name="newName">連接字符串名稱</param> 
  ///<param name="newConString">連接字符串內(nèi)容</param> 
  ///<param name="newProviderName">數(shù)據(jù)提供程序名稱</param> 
  public static void UpdateConnectionStringsConfig(string newName, string newConString, string newProviderName)
  {
   //指定config文件讀取
   string file = System.Windows.Forms.Application.ExecutablePath;
   Configuration config = ConfigurationManager.OpenExeConfiguration(file);

   bool exist = false; //記錄該連接串是否已經(jīng)存在 
   //如果要更改的連接串已經(jīng)存在 
   if (config.ConnectionStrings.ConnectionStrings[newName] != null)
   {
    exist = true;
   }
   // 如果連接串已存在,首先刪除它 
   if (exist)
   {
    config.ConnectionStrings.ConnectionStrings.Remove(newName);
   }
   //新建一個(gè)連接字符串實(shí)例 
   ConnectionStringSettings mySettings =
    new ConnectionStringSettings(newName, newConString, newProviderName);
   // 將新的連接串添加到配置文件中. 
   config.ConnectionStrings.ConnectionStrings.Add(mySettings);
   // 保存對配置文件所作的更改 
   config.Save(ConfigurationSaveMode.Modified);
   // 強(qiáng)制重新載入配置文件的ConnectionStrings配置節(jié) 
   ConfigurationManager.RefreshSection("ConnectionStrings");
  }

  ///<summary> 
  ///返回*.exe.config文件中appSettings配置節(jié)的value項(xiàng) 
  ///</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> 
  ///在*.exe.config文件中appSettings配置節(jié)增加一對鍵值對 
  ///</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");
  }

  // 修改system.serviceModel下所有服務(wù)終結(jié)點(diǎn)的IP地址
  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");
  }

  // 修改applicationSettings中App.Properties.Settings中服務(wù)的IP地址
  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;
  }
 }
} 

測試代碼如下:

 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);
   }
  }
 }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • C#使用LINQ查詢操作符實(shí)例代碼(一)

    C#使用LINQ查詢操作符實(shí)例代碼(一)

    這篇文章介紹了C#使用LINQ查詢操作符的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-06-06
  • c#網(wǎng)絡(luò)喚醒功能實(shí)現(xiàn)

    c#網(wǎng)絡(luò)喚醒功能實(shí)現(xiàn)

    網(wǎng)絡(luò)喚醒實(shí)現(xiàn)了對網(wǎng)絡(luò)的集中管理,即在任何時(shí)刻,網(wǎng)管中心的IT管理人員可以經(jīng)由網(wǎng)絡(luò)遠(yuǎn)程喚醒一臺處于休眠或關(guān)機(jī)狀態(tài)的計(jì)算機(jī),下面使用c#實(shí)現(xiàn)網(wǎng)絡(luò)喚醒功能
    2014-01-01
  • C#中通過API實(shí)現(xiàn)的打印類 實(shí)例代碼

    C#中通過API實(shí)現(xiàn)的打印類 實(shí)例代碼

    這篇文章介紹了,C#中通過API實(shí)現(xiàn)的打印類 實(shí)例代碼,有需要的朋友可以參考一下
    2013-08-08
  • Unity3D實(shí)戰(zhàn)之答題系統(tǒng)的實(shí)現(xiàn)

    Unity3D實(shí)戰(zhàn)之答題系統(tǒng)的實(shí)現(xiàn)

    本文將用Unity3D制作一個(gè)答題系統(tǒng),可以從文本文檔中提取題目和分?jǐn)?shù),然后綁定到UI上,在答題的過程中,自動判斷分?jǐn)?shù),自動判斷正確率。感興趣的可以學(xué)習(xí)一下
    2022-03-03
  • C#檢測兩個(gè)矩陣是否相等的方法

    C#檢測兩個(gè)矩陣是否相等的方法

    這篇文章主要介紹了C#檢測兩個(gè)矩陣是否相等的方法,涉及C#進(jìn)行數(shù)組操作的相關(guān)技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2015-04-04
  • WPF自定義控件和樣式之自定義按鈕(Button)

    WPF自定義控件和樣式之自定義按鈕(Button)

    接觸WPF也有兩個(gè)多月了,有了一定的理論基礎(chǔ)和項(xiàng)目經(jīng)驗(yàn),現(xiàn)在打算寫一個(gè)系列,做出來一個(gè)WPF的控件庫。下面這篇文章主要給大家介紹了關(guān)于WPF自定義控件和樣式之自定義按鈕(Button)的相關(guān)資料,需要的朋友可以參考下。
    2018-04-04
  • c# 關(guān)閉窗體時(shí)提示的小例子

    c# 關(guān)閉窗體時(shí)提示的小例子

    這篇文章介紹了c#中關(guān)閉窗體時(shí)提示的小例子代碼,有需要的朋友可以參考一下
    2013-07-07
  • c#使用IAsyncEnumerable實(shí)現(xiàn)流式分段傳輸

    c#使用IAsyncEnumerable實(shí)現(xiàn)流式分段傳輸

    這篇文章主要為大家詳細(xì)介紹了c#如何使用IAsyncEnumerable實(shí)現(xiàn)流式分段傳輸,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下
    2023-10-10
  • C# 泛型參數(shù)轉(zhuǎn)換

    C# 泛型參數(shù)轉(zhuǎn)換

    本文介紹了C# 泛型參數(shù)轉(zhuǎn)換的相關(guān)知識,具有很好的參考價(jià)值,下面跟著小編一起來看下吧
    2017-02-02
  • c#與js隨機(jī)數(shù)生成方法

    c#與js隨機(jī)數(shù)生成方法

    這篇文章主要介紹了c#與js隨機(jī)數(shù)生成方法,實(shí)例分析了C#與js生成隨機(jī)數(shù)的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-02-02

最新評論

元阳县| 开封县| 大兴区| 公主岭市| 富宁县| 东至县| 延川县| 西青区| 拉孜县| 宾阳县| 周宁县| 黄大仙区| 鹤庆县| 漳州市| 泸定县| 新郑市| 阿鲁科尔沁旗| 勃利县| 河北省| 马关县| 霍林郭勒市| 和平县| 乌拉特前旗| 张北县| 巴东县| 墨脱县| 长子县| 巩义市| 长寿区| 焉耆| 揭西县| 灵丘县| 岳普湖县| 洱源县| 黄大仙区| 潢川县| 沙田区| 黑龙江省| 崇明县| 宝山区| 建平县|