我想在我的网络配置文件中存储一个简单的键/值字符串字典。 Visual Studio可以很容易地存储字符串集合(参见下面的示例),但我不确定如何使用字典集合。
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>value1</string>
<string>value2</string>
<string>value2</string>
</ArrayOfString>
答案 0 :(得分:119)
为什么重新发明轮子? AppSettings部分专门用于在配置文件中存储类字典数据。
如果您不想在AppSettings部分中放入太多数据,可以按如下方式将相关值分组到各自的部分中:
<configuration>
<configSections>
<section
name="MyDictionary"
type="System.Configuration.NameValueFileSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<MyDictionary>
<add key="name1" value="value1" />
<add key="name2" value="value2" />
<add key="name3" value="value3" />
<add key="name4" value="value4" />
</MyDictionary>
</configuration>
您可以使用
访问此集合中的元素using System.Collections.Specialized;
using System.Configuration;
public string GetName1()
{
NameValueCollection section =
(NameValueCollection)ConfigurationManager.GetSection("MyDictionary");
return section["name1"];
}
答案 1 :(得分:27)
朱丽叶的答案很明确,但是你也可以在外部.config
文件中添加其他配置,方法是设置web.config
,如下所示:
<?xml version="1.0"?>
<configuration>
<configSections>
<!-- blah blah the default stuff here -->
<!-- here, add your custom section -->
<section name="DocTabMap" type="System.Configuration.NameValueFileSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<!-- your custom section, but referenced in another file -->
<DocTabMap file="CustomDocTabs.config" />
<!-- etc, remainder of default web.config is here -->
</configuration>
然后,您的CustomDocTabs.config
看起来像这样:
<?xml version="1.0"?>
<DocTabMap>
<add key="A" value="1" />
<add key="B" value="2" />
<add key="C" value="3" />
<add key="D" value="4" />
</DocTabMap>
现在您可以通过以下代码访问它:
NameValueCollection DocTabMap = ConfigurationManager.GetSection("DocTabMap") as NameValueCollection;
DocTabMap["A"] // == "B"
答案 2 :(得分:5)
您需要实现自定义部分(请参阅Configuration Section Designer)。
你真正想要的是......接近这一点:
<MyDictionary>
<add name="Something1" value="something else"/>
<add name="Something2" value="something else"/>
<add name="Something3" value="something else"/>
</MyDictionary>
其中XmlAttribute“name”是一个Key,它不允许在后面的代码中有多个。同时,确保Collection MyDictionary也是一个Dictionary。
您可以使用此工具完成所有这些工作,并根据需要填补空白。
答案 3 :(得分:3)
在应用程序设置中,我们可以使用System.Collection.Specilized.StringCollection
<X.Properties.Settings>
<setting name="ElementsList" serializeAs="Xml">
<value>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>Element1</string>
<string>Element2</string>
</ArrayOfString>
</value>
</setting>
</X.Properties.Settings>
访问列表:
var element = Settings.Default.ElementsList[index]
答案 4 :(得分:0)
我不确定如何直接存储字典,但您可以轻松地使用字符串数组来存储字典。对于每个键值对,您将键保存为第一个字符串,值保存为第二个字符串。然后在重建字典时,您可以撤消此编码。
static Dictionary<string,string> ArrayToDictionary(string[] data) {
var map = new Dictionary<string,string>();
for ( var i= 0; i < data.Length; i+=2 ) {
map.Add(data[i], data[i+1]);
}
return map;
}