如何在C#app.config文件中读取多个值?

时间:2014-02-19 10:54:27

标签: c# .net visual-studio-2008 configuration app-config

我想阅读以下app.config文件..如何阅读?我是否需要更改任何内容才能读取文件?

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<Users>
  <add username = "Dinesh" password ="Password" domain ="MyCompany" />
 <add username = "Kumar" password ="Password" domain ="MyCompany" />
</Users>
</configuration>

3 个答案:

答案 0 :(得分:9)

我认为你应该实施一个部分。

我制作了一些可能正是您想要的示例代码:

using System.Collections.Generic;
using System.Configuration;
using System.Linq;

namespace ConsoleApplication1
{
    public sealed class UsersConfigMapSection : ConfigurationSection
    {
        private static UsersConfigMapSection config = ConfigurationManager.GetSection("Users") as UsersConfigMapSection;

        public static UsersConfigMapSection Config
        {
            get
            {
                return config;
            }
        }

        [ConfigurationProperty("", IsRequired = true, IsDefaultCollection = true)]
        private UsersConfigMapConfigElements Settings
        {
            get { return (UsersConfigMapConfigElements)this[""]; }
            set { this[""] = value; }
        }

        public IEnumerable<UsersConfigMapConfigElement> SettingsList
        {
            get { return this.Settings.Cast<UsersConfigMapConfigElement>(); }
        }
    }

    public sealed class UsersConfigMapConfigElements : ConfigurationElementCollection
    {
        protected override ConfigurationElement CreateNewElement()
        {
            return new UsersConfigMapConfigElement();
        }
        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((UsersConfigMapConfigElement)element).Username;
        }
    }

    public sealed class UsersConfigMapConfigElement : ConfigurationElement
    {
        [ConfigurationProperty("username", IsKey = true, IsRequired = true)]
        public string Username
        {
            get { return (string)base["username"]; }
            set { base["username"] = value; }
        }

        [ConfigurationProperty("password", IsRequired = true)]
        public string Password
        {
            get { return (string)base["password"]; }
            set { base["password"] = value; }
        }

        [ConfigurationProperty("domain", IsRequired = true)]
        public string Domain
        {
            get { return (string)base["domain"]; }
            set { base["domain"] = value; }
        }
    }
}

然后从配置文件中提取用户,如下所示:

var users = UsersConfigMapSection.Config.SettingsList.ToList();

最后你的配置文件应如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="Users" type="ConsoleApplication1.UsersConfigMapSection, ConsoleApplication1"/>
  </configSections>
  <Users>
    <add username = "Dinesh" password ="Password" domain ="MyCompany" />
    <add username = "Kumar" password ="Password" domain ="MyCompany" />
  </Users>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
</configuration>

答案 1 :(得分:0)

或者您可以使用此解决方法来实现相同的目标......

<add key="username" value="A,B,C"/>
And

string[] mykey = ConfigurationManager.AppSettings["username"].Split(',');

答案 2 :(得分:-1)

首先,您需要将您的值设置在<appSettings>下,然后将键添加到您想要的字段

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
  <add key="username" value="Dinesh" />
<appSettings>
</configuration>

然后,您需要在参考文件夹中添加对System.Configuration的引用。

现在阅读你的价值......

String Version = ConfigurationManager.AppSettings["username"];