zoukankan      html  css  js  c++  java
  • 操作App.config的类(转载)

    http://www.cnblogs.com/yaojiji/archive/2007/12/17/1003191.html

    操作App.config的类

    public class DoConfig
        {
            public static void Editconfig(string Key,string Value)                       
            {
                XmlDocument xmldoc = new XmlDocument();
                string filePath = Application.ExecutablePath + ".config";
                xmldoc.Load(filePath);

                XmlNodeList topM = xmldoc.DocumentElement.ChildNodes;
                foreach (XmlElement element in topM)
                {
                    if (element.Name.ToLower() == "appsettings")     //找到要改写的字段名  
                    {
                        XmlNodeList _node = element.ChildNodes;
                        if (_node.Count > 0)
                        {
                            foreach (XmlElement el in _node)
                            {
                                //el.Attributes[Key].Value = Value;                                                                 //查找并改写  
                                if (el.Attributes["key"].Value == Key)
                                    el.Attributes["value"].Value = Value;
                            }
                        }
                    }
                }
                xmldoc.Save(filePath);       //保存改写文件  
            }
        }
     
     
     
    好文要顶 关注我 
  • 相关阅读:
    下载PDF格式的Html
    EnumHelper.cs
    FtpHelper.cs
    Windows下用cmd命令安装及卸载服务
    c# list排序
    用NOPI将图片二进制流导出到Excel
    jquery的clone方法 于textarea和select的bug修复
    时间戳格式化函数
    快速激活Navicat Premium 12
    防止应用程序重复打开
  • 原文地址:https://www.cnblogs.com/wenjie/p/5711463.html
Copyright © 2011-2022 走看看