本文主要是介绍使用C#语言读取config配置文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
今天根据看着别人的代码,写了一下读取config配置文件的方法。
配置文件主要是xml类型的文件,主要是写在网站中,主要通过三部来读取配置文件。
(1)加载配置文件
(2)遍历xml文档,将键值对添加到dictionary中
(3)通过字典,来获取键对应的值
主要代码如下
using System;
using System.Collections.Generic;
using System.Xml;namespace Library
{/// <summary>/// 通过GetConfig.getAppValue(string key)来得到config文件中的值/// </summary>public static class GetConfig{//存放键值对static Dictionary<string, string> dic = new Dictionary<string, string>();/// <summary>/// 加载配置文件/// </summary>public static void getMyConfig(){XmlDocument xml = new XmlDocument();//获取应用的当前路径string appPath = AppDomain.CurrentDomain.BaseDirectory;//加载xml文件xml.Load(appPath + "\\WebSystem.config");XmlElement xnode = (XmlElement)xml.SelectSingleNode("configuration");//读取config子节点,并将值写入到字典中SetValues(dic, xnode);}/// <summary>/// 通过键,来获取相应的值/// </summary>/// <param name="key">键</param>/// <returns>值</returns> public static string getAppValue(string key){getMyConfig();if (!string.IsNullOrEmpty(key) && dic.ContainsKey(key.ToLower()))return dic[key.ToLower()];elsereturn null;}//重载,如果没有获取到值,返回默认值public static string getAppValue(string key,string defaultValue){getMyConfig();if (!string.IsNullOrEmpty(key) && dic.ContainsKey(key.ToLower()))return dic[key.ToLower()];elsereturn defaultValue;}/// <summary>/// 检查键值对中是否有值/// </summary>/// <param name="node">节点</param>/// <returns></returns>private static bool checkNode(XmlNode node){if (node.Attributes["key"] != null && node.Attributes["value"] != null)return true;elsereturn false;}#region/// <summary>/// 将config文件中的值,读取到dictionary中/// </summary>/// <param name="dic">存放键值对的dictionary</param>/// <param name="xnode">xml文档的节点</param>private static void SetValues(Dictionary<string,string> dic, XmlElement xnode){foreach(XmlNode xmlnode in xnode.ChildNodes){if (xmlnode.Name == "appSettings"){ //遍历节点,文档结构如下,将节点键值对存入到dictionary中//<clear/>// <add key="SiteNameEN" value="IFAWebApp"/>//<remove/>foreach (XmlNode node in xmlnode){switch (node.Name){case "clear":dic.Clear();break;case "add":if (checkNode(node))dic.Add(node.Attributes["key"].Value.ToLower(), node.Attributes["value"].Value.ToLower());break;case "remove":if(checkNode(node))dic.Remove(node.Attributes["key"].Value.ToLower());break;}}}}}#endregion}
}
这篇关于使用C#语言读取config配置文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!