主页 > 知识库 > .net 读取非标准配置文件的小例子

.net 读取非标准配置文件的小例子

热门标签:科大讯飞语音识别系统 电商新玩法 客户服务 国美全国运营中心 电销业务 网站排名优化 人工智能 百度AI接口
代码如下:
复制代码 代码如下:

public static string Config(string key) 
       { 
           ExeConfigurationFileMap file = new ExeConfigurationFileMap(); 
           file.ExeConfigFilename = @"Providers\\Provider.config"; 
           Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None); 
           AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings"); 
           return appsection.Settings[key].Value; 
       } 

配置文件目录结构:
复制代码 代码如下:

?xml version="1.0" encoding="utf-8" ?> 
configuration> 
    appSettings> 
        add key="ConnectionString" value="Server=(local);Database=DB;User Id=sa;Password=123" /> 
    /appSettings> 
/configuration> 

调用:
复制代码 代码如下:

//里面的参数为配置文件的key  
string strConn=Config("ConnectionString"); 
您可能感兴趣的文章:
  • asp.net 在处理向该请求提供服务所需的配置文件时出错
  • .NET 2.0获取配置文件AppSettings和ConnectionStrings节数据的方法
  • 认识ASP.NET配置文件Web.config

标签:枣庄 攀枝花 厦门 益阳 南平 拉萨 咸宁 POS机

巨人网络通讯声明:本文标题《.net 读取非标准配置文件的小例子》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266