对于我的项目,我有通过项目属性中的“设置”添加的设置。
我很快发现直接编辑app.config文件似乎没有真正更新设置值。似乎我在进行更改然后重新编译时必须查看项目属性。
我在想......什么是最好的 最简单的方式来处理可自定义的设置 对于一个项目 - 认为这会 如何.Net是一个不费脑筋的 处理它...羞辱我。
是否可以使用其中一个 设置, AppSettings , ApplicationSettings 或 UserSettings 来处理此问题?
将我的设置写入自定义配置文件并自行处理是否更好?
现在...... 我正在寻找最快的解决方案!
我的环境是C#,。Net 3.5和Visual Studio 2008。
更新
我正在尝试执行以下操作:
protected override void Save()
{
Properties.Settings.Default.EmailDisplayName = this.ddEmailDisplayName.Text;
Properties.Settings.Default.Save();
}
编译时给我一个只读错误。
答案 0 :(得分:11)
这很愚蠢......我想我不得不为浪费每个人的时间而道歉!但看起来我只需要将范围设置为User 而不是Application,我可以写入新值。
答案 1 :(得分:3)
System.Configuration.Configuration config =ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["oldPlace"].Value = "3";
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
尝试使用此代码很容易。
Atte:Erick Siliezar
答案 2 :(得分:3)
我遇到了同样的问题,直到我意识到我在调试模式下运行应用程序,因此我的新appSetting的密钥被写入[applicationName]。 vshost.exe.config 文件。
此应用程序关闭后,此vshost.exe.config文件不会保留任何新密钥 - 它将恢复为[applicationName]。 exe.config 文件的内容。
我在调试器之外测试了它,并在这里和其他地方添加配置appSetting键的各种方法工作正常。新密钥将添加到:[applicationName]。 exe.config 。
答案 3 :(得分:3)
我也试图解决这个需求,现在我有一个漂亮的漂亮的ConsoleApplication,我想分享:(App.config)
您将看到的是:
玩得开心!
public void UpdateProperty(string key, string value)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
KeyValueConfigurationCollection appSettings = config.AppSettings.Settings;
// update SaveBeforeExit
config.AppSettings.Settings[key].Value = value;
Console.Write("...Configuration updated: key "+key+", value: "+value+"...");
//save the file
config.Save(ConfigurationSaveMode.Modified);
Console.Write("...saved Configuration...");
//relaod the section you modified
ConfigurationManager.RefreshSection(config.AppSettings.SectionInformation.Name);
Console.Write("...Configuration Section refreshed...");
}
public void ReadAppSettingsProperty()
{
try
{
var section = ConfigurationManager.GetSection("applicationSettings");
// Get the AppSettings section.
NameValueCollection appSettings = ConfigurationManager.AppSettings;
// Get the AppSettings section elements.
Console.WriteLine();
Console.WriteLine("Using AppSettings property.");
Console.WriteLine("Application settings:");
if (appSettings.Count == 0)
{
Console.WriteLine("[ReadAppSettings: {0}]", "AppSettings is empty Use GetSection command first.");
}
for (int i = 0; i < appSettings.Count; i++)
{
Console.WriteLine("#{0} Key: {1} Value: {2}",
i, appSettings.GetKey(i), appSettings[i]);
}
}
catch (ConfigurationErrorsException e)
{
Console.WriteLine("[ReadAppSettings: {0}]", e.ToString());
}
}
public void updateAppSettingProperty(string key, string value)
{
// Get the application configuration file.
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
string sectionName = "appSettings";
config.AppSettings.Settings.Remove(key);
config.AppSettings.Settings.Add(key, value);
SaveConfigFile(config);
}
public void insertAppSettingProperty(string key, string value)
{
// Get the application configuration file.
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
string sectionName = "appSettings";
config.AppSettings.Settings.Add(key, value);
SaveConfigFile(config);
}
public void deleteAppSettingProperty(string key)
{
// Get the application configuration file.
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings.Remove(key);
SaveConfigFile(config);
}
private static void SaveConfigFile(System.Configuration.Configuration config)
{
string sectionName = "appSettings";
// Save the configuration file.
config.Save(ConfigurationSaveMode.Modified);
// Force a reload of the changed section. This
// makes the new values available for reading.
ConfigurationManager.RefreshSection(sectionName);
// Get the AppSettings section.
AppSettingsSection appSettingSection =
(AppSettingsSection)config.GetSection(sectionName);
Console.WriteLine();
Console.WriteLine("Using GetSection(string).");
Console.WriteLine("AppSettings section:");
Console.WriteLine(appSettingSection.SectionInformation.GetRawXml());
}
}
配置文件如下所示:
<configuration>
<configSections>
</configSections>
<appSettings>
<add key="aNewKey1" value="aNewValue1" />
</appSettings>
好吧,所以我对使用此解决方案的AppSettings没有任何问题!玩得开心...... ;-)!
答案 4 :(得分:2)
编辑:我的错误。我误解了原问题的目的。
原文:
我们经常直接在app.config文件中设置我们的设置,但通常这是我们的自定义设置。
示例app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="MySection" type="System.Configuration.NameValueFileSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<connectionStrings>
<add name="Default" connectionString="server=MyServer;database=MyDatabase;uid=MyDBUser;password=MyDBPassword;connection timeout=20" providerName="System.Data.SqlClient" />
</connectionStrings>
<MySection>
<add key="RootPath" value="C:\MyDirectory\MyRootFolder" /> <!-- Path to the root folder. -->
<add key="SubDirectory" value="MySubDirectory" /> <!-- Name of the sub-directory. -->
<add key="DoStuff" value="false" /> <!-- Specify if we should do stuff -->
</MySection>
</configuration>
答案 5 :(得分:2)
不确定这是否是你所追求的,但你可以从应用程序更新并保存设置:
ConsoleApplication1.Properties.Settings.Default.StringSetting =“test”; ConsoleApplication1.Properties.Settings.Default.Save();
答案 6 :(得分:2)
您如何在代码中引用Settings类?您使用默认实例还是创建新的Settings对象?我相信默认实例使用设计器生成的值,只有在打开属性时才会从配置文件中重新读取该值。如果您创建一个新对象,我相信该值直接从配置文件本身读取,而不是从设计器生成的属性读取,除非app.config文件中不存在该设置。
通常我的设置将在库中,而不是直接在应用程序中。我在属性文件中设置了有效的默认值。然后,我可以通过在应用程序的配置中添加适当的配置部分(从库app.config文件中检索和修改)来覆盖这些部分(根据需要,使用web.config或app.config)。
使用:
Settings configuration = new Settings();
string mySetting = configuration.MySetting;
而不是:
string mySetting = Settings.Default.MySetting;
是我的关键。
答案 7 :(得分:1)
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!--- ->
</configSections>
<userSettings>
<Properties.Settings>
<setting name="MainFormSize" serializeAs="String">
<value>
1022, 732</value>
</setting>
<Properties.Settings>
</userSettings>
<appSettings>
<add key="TrilWareMode" value="-1" />
<add key="OptionsPortNumber" value="1107" />
</appSettings>
</configuration>
从App.Config文件中读取值:
//This method will read the value of the OptionsPortNumber in the
//above app.config file.
private int LoadConfigData ()
{
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
// AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
// points to the config file.
doc.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
int smartRefreshPortNumber = 0;
foreach (XmlNode node in doc.ChildNodes.Item(1))
{
//Searching for the node “”
if (node.LocalName == "appSettings")
{
smartPortNumber =Convert.ToInt32(node.ChildNodes.Item(1).Attributes[1].Value);
}
}
Return smartPortNumber;
}
更新App.config中的值:
//This method will read the value of the OptionsPortNumber in the
//above app.config file.
private void UpdateConfigData()
{
System.Xml.XmlDocument doc = new System.Xml.XmlDocument();
doc.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
//Looping through all nodes.
foreach (XmlNode node in doc.ChildNodes.Item(1))
{
//Searching for the node “”
if (node.LocalName == "appSettings")
{
if (!dynamicRefreshCheckBox.Checked)
{
node.ChildNodes.Item(1).Attributes[1].Value = this.portNumberTextBox.Text;
}
else
{
node.ChildNodes.Item(1).Attributes[1].Value = Convert.ToString(0);
}
}
}
//Saving the Updated values in App.config File.Here updating the config
//file in the same path.
doc.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
}
答案 8 :(得分:0)