主頁 > 知識庫 > 獲取App.config配置文件中的參數(shù)值

獲取App.config配置文件中的參數(shù)值

熱門標(biāo)簽:海東防封電銷卡 辦公用地圖標(biāo)注網(wǎng)點怎么操作 云南外呼系統(tǒng)代理 寧德防封版電銷卡 西寧電銷外呼系統(tǒng)公司 上海市三維地圖標(biāo)注 安陸市地圖標(biāo)注app 南昌自動外呼系統(tǒng)線路 聊城智能電銷機器人電話

下面通過代碼示例給大家展示下,具體內(nèi)容如下:

首先添加System.Configuration引用
向App.config配置文件添加參數(shù)

App.config添加
向App.config配置文件添加參數(shù)
  例子:

  在這個App.config配置文件中,我添加了4個參數(shù),App.config參數(shù)類似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配置文件中的參數(shù)值呢?

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())
   {
    //循環(huán)遍歷出配置文件中的所有的鍵Key
    foreach (string s in ConfigurationManager.AppSettings)
    {
     Console.WriteLine(s);
    }
   }
   Console.ReadKey();
  }
 }
}

  使用for循環(huán)遍歷Key的代碼如下:


       

 static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    //循環(huán)遍歷出配置文件中的所有的鍵Key
    for (int i = 0; i  ConfigurationManager.AppSettings.Count; i++)
    {
     Console.WriteLine(ConfigurationManager.AppSettings.GetKey(i));
    }
   }
   Console.ReadKey();
  }

  通過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遍歷出后保存在一個容器里(例如:數(shù)組),然后用Key匹配找出Value即可。

       

 static void Main(string[] args)
  {
   //判斷App.config配置文件中是否有Key(非null)
   if (ConfigurationManager.AppSettings.HasKeys())
   {
    Liststring> theKeys = new Liststring>(); //保存Key的集合
    Liststring> theValues = new Liststring>(); //保存Value的集合
    //遍歷出所有的Key并添加進theKeys集合
    foreach (string theKey in ConfigurationManager.AppSettings.Keys)
    {
     theKeys.Add(theKey);
    }
    //根據(jù)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技術(shù)獲取app.config配置文件中的參數(shù)值的例子,有需要的朋友可以參考下。

您可能感興趣的文章:
  • Web.config 和 App.config 的區(qū)別分析
  • 解決在Web.config或App.config中添加自定義配置的方法詳解
  • 使用linq to xml修改app.config示例(linq讀取xml)
  • C#中讀取App.config配置文件代碼實例

標(biāo)簽:南寧 衢州 汕尾 崇左 青海 贛州 洛陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《獲取App.config配置文件中的參數(shù)值》,本文關(guān)鍵詞  獲取,App.config,配置文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《獲取App.config配置文件中的參數(shù)值》相關(guān)的同類信息!
  • 本頁收集關(guān)于獲取App.config配置文件中的參數(shù)值的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章