讀取配置文件-AppConfig

来源:https://www.cnblogs.com/lhadmin/archive/2018/01/05/8206054.html
-Advertisement-
Play Games

using System.Xml;using System.IO;using System; namespace Framework.Common{ /// /// 用於獲取或設置Web.config/*.exe.config中節點數據的輔助類 /// public sealed class App... ...


using System.Xml;
using System.IO;
using System;
 
namespace Framework.Common
{
    /// <summary>
    /// 用於獲取或設置Web.config/*.exe.config中節點數據的輔助類
    /// </summary>
    public sealed class AppConfig
    {
        private string filePath;
 
        /// <summary>
        /// 從當前目錄中按順序檢索Web.Config和*.App.Config文件。
        /// 如果找到一個,則使用它作為配置文件;否則會拋出一個ArgumentNullException異常。
        /// </summary>
        public AppConfig()
        {
            string webconfig = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Web.Config");
            string appConfig = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile.Replace(".vshost", "");
 
            if (File.Exists(webconfig))
            {
                filePath = webconfig;
            }
            else if (File.Exists(appConfig))
            {
                filePath = appConfig;
            }
            else
            {
                throw new ArgumentNullException("沒有找到Web.Config文件或者應用程式配置文件, 請指定配置文件");
            }
        }
 
        /// <summary>
        /// 用戶指定具體的配置文件路徑
        /// </summary>
        /// <param name="configFilePath">配置文件路徑(絕對路徑)
        public AppConfig(string configFilePath)
        {
            filePath = configFilePath;
        }
 
        /// <summary>
        /// 設置程式的config文件
        /// </summary>
        /// <param name="keyName">鍵名
        /// <param name="keyValue">鍵值
        public void AppConfigSet(string keyName, string keyValue)
        {
            //由於存在多個Add鍵值,使得訪問appSetting的操作不成功,故註釋下麵語句,改用新的方式
            /* 
            string xpath = "//add[@key='" + keyName + "']";
            XmlDocument document = new XmlDocument();
            document.Load(filePath);
 
            XmlNode node = document.SelectSingleNode(xpath);
            node.Attributes["value"].Value = keyValue;
            document.Save(filePath); 
             */
 
            XmlDocument document = new XmlDocument();
            document.Load(filePath);
 
            XmlNodeList nodes = document.GetElementsByTagName("add");
            for (int i = 0; i < nodes.Count; i++)
            {
                //獲得將當前元素的key屬性
                XmlAttribute attribute = nodes[i].Attributes["key"];
                //根據元素的第一個屬性來判斷當前的元素是不是目標元素
                if (attribute != null && (attribute.Value == keyName))
                {
                    attribute = nodes[i].Attributes["value"];
                    //對目標元素中的第二個屬性賦值
                    if (attribute != null)
                    {
                        attribute.Value = keyValue;
                        break;
                    }
                }
            }
            document.Save(filePath);
        }
 
        /// <summary>
        /// 讀取程式的config文件的鍵值。
        /// 如果鍵名不存在,返回空
        /// </summary>
        /// <param name="keyName">鍵名
        /// <returns></returns>
        public string AppConfigGet(string keyName)
        {
            string strReturn = string.Empty;
            try
            {
                XmlDocument document = new XmlDocument();
                document.Load(filePath);
 
                XmlNodeList nodes = document.GetElementsByTagName("add");
                for (int i = 0; i < nodes.Count; i++)
                {
                    //獲得將當前元素的key屬性
                    XmlAttribute attribute = nodes[i].Attributes["key"];
                    //根據元素的第一個屬性來判斷當前的元素是不是目標元素
                    if (attribute != null && (attribute.Value == keyName))
                    {
                        attribute = nodes[i].Attributes["value"];
                        if (attribute != null)
                        {
                            strReturn = attribute.Value;
                            break;
                        }
                    }
                }
            }
            catch
            {
                ;
            }
 
            return strReturn;
        }
 
        /// <summary>
        /// 獲取指定鍵名中的子項的值
        /// </summary>
        /// <param name="keyName">鍵名
        /// <param name="subKeyName">以分號(;)為分隔符的子項名稱
        /// <returns>對應子項名稱的值(即是=號後面的值)</returns>
        public string GetSubValue(string keyName, string subKeyName)
        {
            string connectionString = AppConfigGet(keyName).ToLower();
            string[] item = connectionString.Split(new char[] { ';' });
 
            for (int i = 0; i < item.Length; i++)
            {
                string itemValue = item[i].ToLower();
                if (itemValue.IndexOf(subKeyName.ToLower()) >= 0) //如果含有指定的關鍵字
                {
                    int startIndex = item[i].IndexOf("="); //等號開始的位置
                    return item[i].Substring(startIndex + 1); //獲取等號後面的值即為Value
                }
            }
            return string.Empty;
        }
 
        #region 一些常用的配置項屬性
 
        /// <summary>
        /// 從配置文件獲取許可權系統鏈接(配置項HWSecurity的值)
        /// </summary>
        public string HWSecurity
        {
            get
            {
                return AppConfigGet("HWSecurity");
            }
        }
 
        /// <summary>
        /// 系統的標識ID(配置項System_ID的值)
        /// </summary>
        public string System_ID
        {
            get
            {
                return AppConfigGet("System_ID");
            }
        }
 
        /// <summary>
        /// 應用程式名稱(配置項ApplicationName的值)
        /// </summary>
        public string AppName
        {
            get
            {
                return AppConfigGet("ApplicationName");
            }
        }
 
        /// <summary>
        /// 軟體廠商名稱(配置項Manufacturer的值)
        /// </summary>
        public string Manufacturer
        {
            get
            {
                return AppConfigGet("Manufacturer");
            }
        }
 
        /// <summary>
        /// 設置程式的config文件的Enterprise Library的資料庫鏈接地址
        /// </summary>
        /// <param name="keyName">鍵名
        /// <param name="keyValue">鍵值
        public void SetConnectionString(string keyName, string keyValue)
        {
            XmlDocument document = new XmlDocument();
            document.Load(filePath);
 
            XmlNodeList nodes = document.GetElementsByTagName("add");
            for (int i = 0; i < nodes.Count; i++)
            {
                //獲得將當前元素的name屬性
                XmlAttribute att = nodes[i].Attributes["name"];
                //根據元素的第一個屬性來判斷當前的元素是不是目標元素
                if (att != null && (att.Value == keyName))
                {
                    att = nodes[i].Attributes["connectionString"];
                    if (att != null)
                    {
                        att.Value = keyValue;
                        break;
                    }
                }
            }
            document.Save(filePath);
        }
 
        /// <summary>
        /// 讀取程式的config文件Enterprise Library的資料庫鏈接地址
        /// </summary>
        /// <param name="keyName">鍵名
        /// <returns></returns>
        public string GetConnectionString(string keyName)
        {
            string strReturn = string.Empty;
            try
            {
                XmlDocument document = new XmlDocument();
                document.Load(filePath);
 
                XmlNodeList nodes = document.GetElementsByTagName("add");
                for (int i = 0; i < nodes.Count; i++)
                {
                    //獲得將當前元素的key屬性
                    XmlAttribute att = nodes[i].Attributes["name"];
                    //根據元素的第一個屬性來判斷當前的元素是不是目標元素
                    if (att != null && (att.Value == keyName))
                    {
                        att = nodes[i].Attributes["connectionString"];
                        if (att != null)
                        {
                            strReturn = att.Value;
                            break;
                        }
                    }
                }
            }
            catch
            { ; }
 
            return strReturn;
        }
 
        /// <summary>
        /// 獲取資料庫配置信息
        /// </summary>
        /// <param name="keyName">節點名稱
        /// <returns></returns>
        public DatabaseInfo GetDatabaseInfo(string keyName)
        {
            string connectionString = GetConnectionString(keyName);
            return new DatabaseInfo(connectionString);
        }
 
        /// <summary>
        /// 設置資料庫配置信息
        /// </summary>
        /// <param name="keyName">
        /// <param name="databaseInfo">
        public void SetDatabaseInfo(string keyName, DatabaseInfo databaseInfo)
        {
            SetConnectionString(keyName, databaseInfo.ConnectionString);
        }
 
        #endregion
    }
 
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 枚舉類型 枚舉類型就是預先定義的一類常量集合,如一周的時間、水果的類型等。需要註意的幾點內容如下: 定義枚舉類時,Java預設繼承java.lang.Enum,所以定義的枚舉類不能繼承其他類型; 枚舉類中可以包含成員變數、成員函數,但枚舉常量的定義再所有field和method之前,並以“;”結束; ...
  • 1. try & except 原程式: 1 import math 2 3 while True: 4 text = raw_input('> ') 5 if text[0] == 'q': 6 break 7 x = float(text) 8 y = math.log10(x) 9 print ...
  • 相關介紹:  在java中,整數是有最大上限的。所謂大數是指超過整數最大上限的數,例如18 452 543 389 943 209 789 324 233和8 123 534 323 432 323 432 123 212 443就是兩個大數,在java中這是無法用整型int變數或長整型l ...
  • 1.數組的定義: 第一種: public class ArrayDemo{ public static void main(String[] args){ //定義數組 int [] arr = new int[3]; //數組中的元素預設值為0 System.out.println(arr[0]) ...
  • 恢復內容開始 1.python2.x與python3.x的區別 (1) 2.x的預設編碼是ASSIC碼,不支持中文 (2) 3.x的預設編碼是UNICODE,支持中文 (3) 2.x版本與3.x版本是互不相容的 (4) 3.x的語法更劍明,易學 2.32bits系統and64bits系統 支持最大的 ...
  • 一、DBUtils DBUtils是Python的一個用於實現資料庫連接池的模塊。 連接池的三種模式: 第一種模式: 它的缺點:每一次請求反覆創建資料庫的鏈接,鏈接的次數太多 from flask import Flask from db import POOL import pymysql app ...
  • 一、內置函數 1,數據類型:int,bool .......... 2,數據結構:dict,list,tuple,set,str 3,reversed--保留原列表,返回一個反序的迭代器 4,slice切片 l =(1,2,23,213,5612,234,43) sli =slice(1,5,2) ...
  • LindDotNetCore相關介紹 相關模塊 1. 全局都是依賴DI 1. 消息隊列 1. NoSql 1. Caching 1. 倉儲 1. 服務匯流排 1. Solr 1. 調度 1. 日誌 1. Asspect攔截組件 1. UAA授權 1. 各種組件環境的搭建 1. 各模塊單元測試編寫 DI ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...