时间:2021-05-18
下面通过代码示例给大家展示下,具体内容如下:
首先添加System.Configuration引用
向App.config配置文件添加参数
App.config添加
向App.config配置文件添加参数
例子:
在这个App.config配置文件中,我添加了4个参数,App.config参数类似HashTable都是键/值对
<?xml version="1.0" encoding="utf-8" ?><configuration> <appSettings> <add key="theDate" value="2015-07-20 16:25"/> <add key="theName" value="Alice"/> <add key="theType" value="NBA"/> <add key="thePrice" value="12500.00"/> </appSettings></configuration>那如何访问App.config配置文件中的参数值呢?
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;namespace AppConfigDemo{ class Program { static void Main(string[] args) { //判断App.config配置文件中是否有Key(非null) if (ConfigurationManager.AppSettings.HasKeys()) { //循环遍历出配置文件中的所有的键Key foreach (string s in ConfigurationManager.AppSettings) { Console.WriteLine(s); } } Console.ReadKey(); } }}使用for循环遍历Key的代码如下:
通过Key访问Value的方法:
static void Main(string[] args) { //判断App.config配置文件中是否有Key(非null) if (ConfigurationManager.AppSettings.HasKeys()) { //获取“theDate”键的Value foreach (string s in ConfigurationManager.AppSettings.GetValues("theDate")) { Console.WriteLine(s); } } Console.ReadKey(); }如果你想获取所有Key的Value集合,那该怎么办呢?
思路:将所有的Key遍历出后保存在一个容器里(例如:数组),然后用Key匹配找出Value即可。
static void Main(string[] args) { //判断App.config配置文件中是否有Key(非null) if (ConfigurationManager.AppSettings.HasKeys()) { List<string> theKeys = new List<string>(); //保存Key的集合 List<string> theValues = new List<string>(); //保存Value的集合 //遍历出所有的Key并添加进theKeys集合 foreach (string theKey in ConfigurationManager.AppSettings.Keys) { theKeys.Add(theKey); } //根据Key遍历出所有的Value并添加进theValues集合 for (int i = 0; i < theKeys.Count; i++) { foreach (string theValue in ConfigurationManager.AppSettings.GetValues(theKeys[i])) { theValues.Add(theValue); } } //验证一下 Console.WriteLine("*************Key*************"); foreach (string s in theKeys) { Console.WriteLine(s); } Console.WriteLine("************Value************"); foreach (var item in theValues) { Console.WriteLine(item); } } Console.ReadKey(); }以上代码就是使用.net技术获取app.config配置文件中的参数值的例子,有需要的朋友可以参考下。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
App.config是C#开发WinForm程序的配置文件,开发Web程序的配置文件叫Web.config。本文介绍App.config的简介使用。我们先来打开
在.Net开发的过程中,有时我们需要使用Xml文件作为配置文件(基于某些情况的考虑),而不是app.config、web.config这种,但是我们在xml中配
我首先介绍配置文件中的写法:1.在VS2005中的工程下建立一个config文件,名称为App.config,并如下编辑:复制代码代码如下:其中section节
1、添加一个App.config配置文件。2、配置服务http://Lenovo-PC:80/EvisaWS/WharfService?wsdl,那么在上面的文
本文实例讲述了C#为配置文件加密的实现方法,分享给大家供大家参考。具体实现方法如下:一般来说,在web.config或app.config文件里我们经常会存储一