c# NameValueCollection類讀取配置資訊

來源:互聯網
上載者:User

我首先介紹設定檔中的寫法:
1.在VS2005中的工程下建立一個config檔案,名稱為App.config,並如下編輯: 複製代碼 代碼如下:<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section
name="StartParameters"
type="System.Configuration.NameValueSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<StartParameters>
<add key="IPAddress" value="127.0.0.1"/>
<add key="Port" value="13000"/>
</StartParameters>
</configuration>

其中section節點的name值是自己定義的,在此我定義為“StartParameters”,然後添加上方聲明的節點,並在節點內部添加兩個測試項“<add key="IPAddress" value="127.0.0.1"/>”和“<add key="Port" value="13000"/>”;設定檔定義完畢。

2.開啟要讀取配置資訊的代碼檔案,添加兩個引用,分別是: 複製代碼 代碼如下:using System.Configuration;
using System.Collections.Specialized;

定義一個NameValueCollection類型的變數: 複製代碼 代碼如下:NameValueCollection _table = null;
_table = (NameValueCollection)ConfigurationManager.GetSection("StartParameters");
String ipAddress =_table["IPAddress"].ToString();
String port = _table["Port"].ToString();

上句中的“StartParameters”就是在設定檔中定義的name值。
輸出ipAddress 和port 的值,分別是: 複製代碼 代碼如下:“127.0.0.1”
“13000”

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.