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

C#讀寫Config配置文件案例

 更新時(shí)間:2022年04月19日 08:03:17   作者:農(nóng)碼一生  
這篇文章介紹了C#讀寫Config配置文件的方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

一、簡(jiǎn)介

應(yīng)用程序配置文件(App.config)是標(biāo)準(zhǔn)的 XML 文件,XML 標(biāo)記和屬性是區(qū)分大小寫的。它是可以按需要更改的,開發(fā)人員可以使用配置文件來(lái)更改設(shè)置,而不必重編譯應(yīng)用程序。

*.exe.config配置文件樣式:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
  </connectionStrings>
  <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>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
</configuration>

二、代碼

1.配置文件讀寫類

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 XMLDemo1
{
    public static class ConfigHelper
    {
        #region ConnectionStrings
        //依據(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);
            // 保存對(duì)配置文件所作的更改  
            config.Save(ConfigurationSaveMode.Modified);
            // 強(qiáng)制重新載入配置文件的ConnectionStrings配置節(jié)  
            ConfigurationManager.RefreshSection("ConnectionStrings");
        }

        #endregion

        #region appSettings
        ///<summary> 
        ///返回*.exe.config文件中appSettings配置節(jié)的value項(xiàng)  
        ///</summary> 
        ///<param name="strKey"></param> 
        ///<returns></returns> 
        public static string GetAppConfig(string strKey)
        {
            //D:\Winform\xml文檔操作\XMLDemo1\bin\Debug\XMLDemo1.EXE
            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é)增加一對(duì)鍵值對(duì)  
        ///</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");
        }
        #endregion

        #region
        // 修改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;
        }
        #endregion
    }
}

2.Main 函數(shù)

namespace XMLDemo1
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                //D:\Winform\xml文檔操作\XMLDemo1\bin\Debug\XMLDemo1.EXE
                //string file0 = System.Windows.Forms.Application.ExecutablePath;
                //D:\Winform\xml文檔操作\XMLDemo1\bin\Debug\XMLDemo1.EXE.config
                //string file = System.Windows.Forms.Application.ExecutablePath + ".config";
                //D:\Winform\xml文檔操作\XMLDemo1\bin\Debug\XMLDemo1.vshost.exe.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.0.1");
                string newIP = ConfigHelper.GetAppConfig("ServerIP");
                Console.WriteLine(newIP);
                ConfigHelper.UpdateConnectionStringsConfig("connstr4", ".......", "System.Data.Sqlclient");

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

到此這篇關(guān)于C#讀寫Config配置文件的文章就介紹到這了。希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • C#使用時(shí)序數(shù)據(jù)庫(kù)InfluxDB的教程詳解

    C#使用時(shí)序數(shù)據(jù)庫(kù)InfluxDB的教程詳解

    InfluxDB是一個(gè)開源的時(shí)序數(shù)據(jù)庫(kù),可以自動(dòng)處理時(shí)間序列數(shù)據(jù),這篇文章主要為大家詳細(xì)介紹了C#如何使用InfluxDB,感興趣的小伙伴可以跟隨小編一起了解下
    2023-11-11
  • WPF MVVM示例講解

    WPF MVVM示例講解

    WPF技術(shù)的主要特點(diǎn)是數(shù)據(jù)驅(qū)動(dòng)UI,所以在使用WPF技術(shù)開發(fā)的過(guò)程中是以數(shù)據(jù)為核心的,WPF提供了數(shù)據(jù)綁定機(jī)制,當(dāng)數(shù)據(jù)發(fā)生變化時(shí),WPF會(huì)自動(dòng)發(fā)出通知去更新UI,這篇文章通過(guò)示例讓大家體驗(yàn)下WPF MVM,有需要的朋友可以參考下
    2015-08-08
  • 關(guān)于C#中ajax跨域訪問(wèn)問(wèn)題

    關(guān)于C#中ajax跨域訪問(wèn)問(wèn)題

    最近做項(xiàng)目,需要跨域請(qǐng)求訪問(wèn)數(shù)據(jù)問(wèn)題。下面通過(guò)本文給大家分享C#中ajax跨域訪問(wèn)代碼詳解,需要的朋友可以參考下
    2017-05-05
  • 在Form_Load里面調(diào)用Focus無(wú)效的解決方法

    在Form_Load里面調(diào)用Focus無(wú)效的解決方法

    在調(diào)用Form_Load的時(shí)候,F(xiàn)orm其實(shí)還沒(méi)有進(jìn)入展示階段,自然Focus()調(diào)用也就沒(méi)效果了。
    2013-02-02
  • C#計(jì)時(shí)器的三種實(shí)現(xiàn)方法

    C#計(jì)時(shí)器的三種實(shí)現(xiàn)方法

    這篇文章主要介紹了C#計(jì)時(shí)器的三種實(shí)現(xiàn)方法,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2018-10-10
  • 利用C#編寫Linux守護(hù)進(jìn)程實(shí)例代碼

    利用C#編寫Linux守護(hù)進(jìn)程實(shí)例代碼

    如今的編程是一場(chǎng)程序員和上帝的競(jìng)賽,程序員要開發(fā)出更大更好、傻瓜都會(huì)用到軟件,下面這篇文章主要給大家介紹了關(guān)于利用C#編寫Linux守護(hù)進(jìn)程的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下。
    2018-01-01
  • 一句話清晰總結(jié)C#的協(xié)變和逆變

    一句話清晰總結(jié)C#的協(xié)變和逆變

    這篇文章介紹了C#協(xié)變和逆變的工作原理,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-10-10
  • C#抽象類和接口的區(qū)別分析

    C#抽象類和接口的區(qū)別分析

    這篇文章主要介紹了C#抽象類和接口的區(qū)別,詳細(xì)的分析了抽象類與接口的概念與特性,并對(duì)二者作出比對(duì)說(shuō)明,需要的朋友可以參考下
    2014-10-10
  • c#之OpenFileDialog解讀(打開文件對(duì)話框)

    c#之OpenFileDialog解讀(打開文件對(duì)話框)

    這篇文章主要介紹了c#之OpenFileDialog(打開文件對(duì)話框),具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-07-07
  • C#中如何使用redis

    C#中如何使用redis

    這篇文章主要介紹了C#中如何使用redis,文中示例代碼非常詳細(xì),幫助大家更好的理解和學(xué)習(xí),感興趣的朋友可以了解下
    2020-07-07

最新評(píng)論

泰和县| 潜江市| 浦江县| 昌平区| 郯城县| 娄烦县| 高邮市| 江山市| 娄底市| 托克逊县| 永康市| 栾川县| 新兴县| 剑阁县| 威信县| 蓝田县| 若尔盖县| 和政县| 康保县| 游戏| 黄骅市| 浑源县| 云南省| 夏邑县| 上高县| 宝应县| 桓仁| 昭苏县| 瓮安县| 南川市| 凌海市| 河西区| 屯昌县| 溧水县| 伽师县| 石门县| 东辽县| 武宣县| 七台河市| 娱乐| 沂南县|