现定义一个方法 DIYConfigHelper.cs

using System;
using System.Xml;
using System.Configuration;
using System.Reflection;
using System.Web;
using System.IO; namespace Chain.Common
{ /// <summary>
/// Summary description for ReadWriteConfig.
/// </summary>
public class DIYConfigHelper
{
/// <summary>
///
/// </summary>
/// <param name="key">节点名称</param>
/// <returns></returns> /// <summary>
/// 获取自定义 index.config 文件中的 appsetting 节点值
/// flag -1:配置文件不存在 -2::节点不存在
/// </summary>
/// <param name="path">config文件的路径</param>
/// <param name="key">节点名称</param>
/// <returns>节点名称的值</returns>
public static string GetIndexConfigValue(string path, string key)
{
string flag = "";
string indexConfigPath = path;
if (string.IsNullOrEmpty(indexConfigPath))
return flag = "-1";//配置文件为空
if (!File.Exists(indexConfigPath))
return flag = "-1";//配置文件不存在 ExeConfigurationFileMap ecf = new ExeConfigurationFileMap();
ecf.ExeConfigFilename = indexConfigPath;
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(ecf, ConfigurationUserLevel.None);
try
{
flag = config.AppSettings.Settings[key].Value;
}
catch (Exception)
{
flag = "-2";
}
return flag;
} /// <summary>
/// 设置自定义 index.config 文件中的 appsetting 节点值
/// </summary>
/// <param name="path">config文件的路径</param>
/// <param name="key">节点名称</param>
/// <param name="value">需要修改的值</param>
/// <returns>true:修改成功 false:修改失败</returns>
public static bool SetIndexConfigValue(string path, string key, string value)
{
string indexConfigPath = path;
if (string.IsNullOrEmpty(indexConfigPath))
throw new Exception("请检查应用程序配置文件 appSettings 节点,是否存在 indexConfig 且 value 不为空的配置节!");
if (!File.Exists(indexConfigPath))
throw new Exception(string.Format("配置文件不存在:{0}", indexConfigPath)); ExeConfigurationFileMap ecf = new ExeConfigurationFileMap();
ecf.ExeConfigFilename = indexConfigPath;
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(ecf, ConfigurationUserLevel.None);
config.AppSettings.Settings[key].Value = value;
config.Save();
return true;
} /// <summary>
/// 给xlm指定的节点添加节点和值
/// </summary>
/// <param name="path">xml文件的路径</param>
/// <param name="key">添加的key值</param>
/// <param name="value">添加的value值</param>
public static void AddIndexConfigValue(string path, string key, string value)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(path); //加载xml文件
XmlNode rootXml = xmlDoc.SelectSingleNode("configuration"); //查询XML文件的根节点("siteMapPath")
XmlNodeList xnl = rootXml.SelectNodes("appSettings"); //获取所有节点为"siteMapNode"的节点
foreach (XmlNode xnItem in xnl)
{
XmlElement xe = (XmlElement)xnItem; //将子节点类型转换为XmlElement类型
XmlElement newXE = xmlDoc.CreateElement("add");
newXE.SetAttribute("key", key);
newXE.SetAttribute(@"value", value);
xnItem.AppendChild(newXE);
}
xmlDoc.Save(path);
}
/// <summary>
/// 按xml路径删除指定节点
/// </summary>
/// <param name="path">xml文件路径</param>
/// <param name="key">要删除的节点key值</param>
/// <returns>0:删除失败,1:删除成功,-1:配置文件异常,-2系统异常,</returns>
public static string DeleteIndexConfigValue(string path, string key)
{
string flag = "";
string indexConfigPath = path;
if (string.IsNullOrEmpty(indexConfigPath))
return flag = "-1";//配置文件为空
if (!File.Exists(indexConfigPath))
return flag = "-1";//配置文件不存在 ExeConfigurationFileMap ecf = new ExeConfigurationFileMap();
ecf.ExeConfigFilename = indexConfigPath;
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(ecf, ConfigurationUserLevel.None);
try
{
config.AppSettings.Settings.Remove(key);
config.Save(ConfigurationSaveMode.Modified);
flag = "";
}
catch (Exception)
{
flag = "-2";//系统异常
}
return flag;
}
}
}

调用方式:

    string ss = Chain.Common.DIYConfigHelper.GetIndexConfigValue(HttpRuntime.AppDomainAppPath.ToString() + "DIY.config", "");//获取节点值
bool tt = Chain.Common.DIYConfigHelper.SetIndexConfigValue(HttpRuntime.AppDomainAppPath.ToString() + "DIY.config", "", "");//修改节点值
Chain.Common.DIYConfigHelper.AddIndexConfigValue(HttpRuntime.AppDomainAppPath.ToString() + "DIY.config", "", "");//添加节点和值 string mm=Chain.Common.DIYConfigHelper.DeleteIndexConfigValue(HttpRuntime.AppDomainAppPath.ToString() + "DIY.config", "14");//删除指定值的节点
 

DIY.config文件的内容

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="" value="663CFB4AF7AE2A91B14587C31B3DE60AF38AED2E63F5040C5D453CBC704162B8ACDD7A7D67A95FA0" />
<add key="" value="156D7DB054ABBF9B321B1E8982130FDA3420475BC524C4259C55A8CEA4F884DE649FD16284A1053F" />
</appSettings>
<connectionStrings />
</configuration>

C# 如何获取自定义的config中节点的值,并修改节点的值的更多相关文章

  1. iOS开发小技巧--获取自定义的BarButtonItem中的自定义View的方法(customView)

    如果BarButtonItem是通过[[UIBarButtonItem alloc] initWithCustomView:(nonnull UIView *)]方法设置的.某些情况下需要修改BarB ...

  2. 从SuperSocket的App.config中读取配置,并修改保存,再重启服务

    string XmlPath = System.Windows.Forms.Application.ExecutablePath + ".config"; XmlDocument ...

  3. Odoo中的逆计算——由compute字段的值逆向修改其依赖值

    转载请注明原文地址:https://www.cnblogs.com/cnodoo/p/9281406.html 当通过compute属性指定方法,根据依赖值计算得到当前字段值时.一般也要制定这个计算的 ...

  4. 获取或设置config节点值

    ExeConfigurationFileMap 这个类提供了修改.获取指定 config 的功能:新建一个 ExeConfigurationFileMap 的实例 ecf :并设置 ExeConfig ...

  5. 用于获取或设置Web.config/*.exe.config中节点数据的辅助类

    1. 用于获取或设置Web.config/*.exe.config中节点数据的辅助类 /**//// <summary> /// 用于获取或设置Web.config/*.exe.confi ...

  6. [asp.net mvc 奇淫巧技] 01 - 封装上下文 - 在View中获取自定义的上下文

    我们在asp.net 开发中已经封装了最强大的HttpContext,我们可以在HttpContext中可以获取到几乎任何想获取的东西,也可以在HttpContext写入需要返回客户端的信息.但是这些 ...

  7. [转]通过继承ConfigurationSection,在web.config中增加自定义配置

    本文转自:http://www.blue1000.com/bkhtml/2008-02/55810.htm 前几天写了一篇使用IConfigurationSectionHandler在web.conf ...

  8. web.config中sessionState节点的配置方案

    web.config中sessionState节点的配置方案 web.config关于sessionState节点的配置方案,sessionState有五种模式:Custom,off,inProc,S ...

  9. web.config中<customErrors>节点

    错误提示: “/”应用程序中的服务器错误.------------------------------------------------------------------------------- ...

随机推荐

  1. 关于Unicode

    http://www.unicode.org/faq/utf_bom.html 有关UTF或编码表单的一般问题 Unicode是16位编码吗? Unicode文本可以以多种方式表示吗? 什么是UTF? ...

  2. VS下个人认为比较实用的插件

    懒得打字了,直接贴图

  3. None.js 第三步 回调函数【阻塞代码--非阻塞代码】

    阻塞代码实例 var fs = require("fs"); // 导入文件系统 file system var data = fs.readFileSync('input.txt ...

  4. Spring Data 起步

    [Maven 坐标]G A V ……………………………………………………………………………………………………………………………………………… [JDBC] Connection 连接数据库 State ...

  5. [C++]Linux之头文件sys/types.h[/usr/include/sys]

    1.查找<sys/types.h>文件 一般地,Linux的C头文件<sys/types.h>路径在如题的途径:/usr/include/sys下,然而博主[Linux For ...

  6. [C++]Linux之C编程异常[true未定义解决方案]

    C语言里面是没有bool(布尔)类型的,C++里面才有,这就是说,在C++里面使用bool类型是没有问题的.bool类型有只有两个值:true =1 .false=0. 但是,C99标准里面,又定义了 ...

  7. 几个js框架

    easyui适合做后端 bootstrap适合前端 layui 其实更偏向与后端开发人员使用,在服务端页面上有非常好的效果.

  8. django设置并获取cookie/session,文件上传,ajax接收文件,post/get请求及跨域请求等的方法

    django设置并获取cookie/session,文件上传,ajax接收文件等的方法: views.py文件: from django.shortcuts import render,HttpRes ...

  9. python网络编程初识

    一,什么是计算机网络: 计算机网络是指将地理位置不同的具有独立功能的多台计算机及其外部设备,通过通信线路连接起来,在网络操作系统,网络管理软件及网络通信协议的管理和协调下,实现资源共享和 [1]  信 ...

  10. GIT刷新忽略文件.gitignore

    1.使用命令工具Git Bash,进入需要修改的工作目录.如C:/est 则输入 cd c:/test 2.重置所有缓存(注意后面有个.) git rm -r --cached . 3.重新添加(注意 ...