怎么通过Configuration 类编辑配置文件

别等时光非礼了梦想. 提交于 2019-11-27 02:55:16

代码如下:

        //编辑web.config文件

        //打开配置文件
        Configuration   config   =   System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~ ");
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)config.GetSection( "appSettings ");
        //在appsettings节点中添加元素
        appsection.Settings.Add( "addkey1 ",   "key1 's   value ");
        appsection.Settings.Add( "addkey2 ",   "key2 's   value ");
        config.Save();

        //删除节点或属性
        //打开配置文件
        Configuration   config   =   System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~ ");
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)config.GetSection( "appSettings ");
        //删除appsettings节点中的元素
        appsection.Settings.Remove( "addkey1 ");
        //修改appsettings节点中的元素
        appsection.Settings[ "addkey2 "].Value   =   "modify   key2 's   value ";
        config.Save();

        ////////////////////////////////////////////////////////////////////////

        //编辑App.config文件

        ExeConfigurationFileMap   file   =   new   ExeConfigurationFileMap();
        file.ExeConfigFilename   =   @ "..\..\test.config ";
        //打开配置文件
        Configuration   myConfig   =   System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file,   ConfigurationUserLevel.None);
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)myConfig.GetSection( "appSettings ");
        //在appsettings节点中添加元素
        appsection.Settings.Add( "addkey1 ",   "key1 's   value ");
        appsection.Settings.Add( "addkey2 ",   "key2 's   value ");
        config.Save();

        //删除节点或属性
        //打开配置文件
        ExeConfigurationFileMap   file   =   new   ExeConfigurationFileMap();
        file.ExeConfigFilename   =   @ "..\..\test.config ";
        //打开配置文件
        Configuration   myConfig   =   System.Configuration.ConfigurationManager.OpenMappedExeConfiguration(file,   ConfigurationUserLevel.None);
        //获取appsettings节点
        AppSettingsSection   appsection   =   (AppSettingsSection)myConfig.GetSection( "appSettings ");
        //删除appsettings节点中的元素
        appsection.Settings.Remove( "addkey1 ");
        //修改appsettings节点中的元素
        appsection.Settings[ "addkey2 "].Value   =   "modify   key2 's   value ";
        myConfig.Save();

转载于:https://www.cnblogs.com/love-summer/archive/2011/11/09/2242244.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!