很多时候我们需要对系统的.config文件进度读写操作,例如:系统初始化的参数的更改、系统参数的改变都需要更新到配置文件。
首先我们有必要了解一下app.config、exe.config和vshost.exe.config作用和区别:
vshost.exe.config是程序运行时的配置文本,exe.config是程序运行后会复制到vshost.exe.config,app.config是在vshost.exe.config和exe.config没有情况起作用,从app.config复制到exe.config再复制到vshost.exe.config。vshost.exe.config和exe.config会自动创建内容跟app.config一样。了解过这些其实写配置文件都是写到exe.config文件中了,app.config不会变化。网上也有许多关于配置文件的读写操作,也是借鉴了多位前辈的经验自己总结的一些比较常用的读写操作。废话不多说,直接上主题:
- appSetting节点
/// <summary>
/// 修改AppSettings中配置
/// </summary>
/// <param name="key">key值</param>
/// <param name="value">相应值</param>
public static bool SetConfigValue(string key, string value)
{
try
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
if (config.AppSettings.Settings[key] != null)
config.AppSettings.Settings[key].Value = value;
else
config.AppSettings.Settings.Add(key, value);
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
return true;
}
catch
{
return false;
}
}修改或新增AppSetting节点
/// <summary>
/// 获取AppSettings中某一节点值
/// </summary>
/// <param name="key"></param>
public static string GetConfigValue(string key)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
if (config.AppSettings.Settings[key] != null)
return config.AppSettings.Settings[key].Value;
else return string.Empty;
}获取AppSetting节点值
-
ConnectionStrings节点
/// <summary>
/// 获取连接节点值
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public static string GetConnectionValue(string key)
{
if (ConfigurationManager.ConnectionStrings[key] != null)
return ConfigurationManager.ConnectionStrings[key].ConnectionString;
return string.Empty;
}获取ConnectionStrings节点值
public static void UpdateConnectionStringsConfig(string key, string conString)
{
bool isModified = false; //记录该连接串是否已经存在
if (ConfigurationManager.ConnectionStrings[key] != null)
{
isModified = true;
}
//新建一个连接字符串实例
ConnectionStringSettings mySettings = new ConnectionStringSettings(key, conString); // 打开可执行的配置文件*.exe.config
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); // 如果连接串已存在,首先删除它
if (isModified)
{
config.ConnectionStrings.ConnectionStrings.Remove(key);
}
// 将新的连接串添加到配置文件中.
config.ConnectionStrings.ConnectionStrings.Add(mySettings);
// 保存对配置文件所作的更改
config.Save(ConfigurationSaveMode.Modified);
// 强制重新载入配置文件的ConnectionStrings配置节
ConfigurationManager.RefreshSection("connectionStrings");
}修改或新增ConnectionStrings节点
-
System.ServiceModel节点
/// <summary>
/// 读取EndpointAddress
/// </summary>
/// <param name="endpointName"></param>
/// <returns></returns>
public static string GetEndpointClientAddress(string endpointName)
{
ClientSection clientSection = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;
foreach (ChannelEndpointElement item in clientSection.Endpoints)
{
if (item.Name == endpointName)
return item.Address.ToString();
}
return string.Empty;
} /// <summary>
/// 设置EndpointAddress
/// </summary>
/// <param name="endpointName"></param>
/// <param name="address"></param>
public static bool SetEndpointClientAddress(string endpointName, string address)
{
try
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ClientSection clientSection = config.GetSection("system.serviceModel/client") as ClientSection;
foreach (ChannelEndpointElement item in clientSection.Endpoints)
{
if (item.Name != endpointName)
continue;
item.Address = new Uri(address);
break;
}
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("system.serviceModel");
return true;
}
catch (Exception ex)
{
return false;
} }客户端Client的Endpoint
服务端Service的Address
对与配置文件的修改有些可能会觉得直接操作config文件对安全性来说代价太高了,这种情况下就需要个人取决一下可以使用将appconfig段放到独立的config文件中,以XML的方式进行修改,并可以避免应用程序重启的问题。
简单的再说一下放到独立文件的操作
剩下的就是对xml的操作
string ConnectConfigPath = AppData.StartupPath + "\\Config\\DaoConfig.xml";//获取配置文件路径 //向DaoConfig里添加节点
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(ConnectConfigPath);
XmlNode xmldocSelect = xmlDoc.SelectSingleNode("/DaoConfig[1]"); xmldocSelect.RemoveAll();//删除当前节点的所有子节点 //添加test节点
XmlElement Account = xmlDoc.CreateElement("test");
Account.InnerText = "对应的值";
xmldocSelect.AppendChild(Account); xmlDoc.Save(ConnectConfigPath);
Dao.config文件新增节点的操作