ConfigurationManager读取dll的配置文件

ConfigurationManager读取dll的配置文件


  最近一个项目,需要发布dll给第三方使用,其中需要一些配置参数。

我们知道.NET的exe工程是自带的App.config文件的,编译之后会生成XX.exe.config文件,

使用静态类ConfigurationManager即可读取。


                string ip = ConfigurationManager.AppSettings["ServerIP"];
int port = Convert.ToInt32(ConfigurationManager.AppSettings["ServerPort"]);

  但是一个类库工程生成的Dll能否读取相关的配置文件呢,答案是可以的。不需要我们自己写XML配置文件读取。

还是使用静态类ConfigurationManager,利用方法OpenExeConfiguration加载config文件。

注意:OpenExeConfiguration默认是直接加载dll路径,加载的时候会自动添加上扩展名.config。

如我们的Dll是XX.dll,相应的config文件是XX.dll.config.


               Configuration AppConfig = ConfigurationManager.OpenExeConfiguration("XX.dll");
string strServerName = AppConfig.AppSettings.Settings["ServerName"].Value;
string strServerPath = AppConfig.AppSettings.Settings["ServerPath"].Value;

ConfigurationManager读取dll的配置文件

时间: 2024-12-25 02:51:57

ConfigurationManager读取dll的配置文件的相关文章

System.ConfigurationManager类用于对配置文件的读取

http://blog.csdn.net/ligenyingsr/article/details/54095986 System.ConfigurationManager类用于对配置文件的读取.其具有的成员如下: 一.AppSettings AppSetting是最简单的配置节,读写非常简单. 名称 说明 AppSettings 获取当前应用程序默认配置的 AppSettingsSection 数据 ConnectionStrings 获取当前应用程序默认配置的 ConnectionString

C#读取和写入配置文件

使用.Net2.0中的ConfigurationManager可以方便的实现对配置app.config的读取和写入. ConfigurationManager默认没有自动载入项目,使用前必须手动添加,方法如下: 项目->引用->添加引用->选择System.configuration 1.使用ConfigurationManager读配置文件 我们可以将简单的配置内容放到app.config中的appSettings节点中如下: <appSettings>  <add

c#读取xml文件配置文件Winform及WebForm-Demo具体解释

我这里用Winform和WebForm两种为例说明怎样操作xml文档来作为配置文件进行读取操作. 1.新建一个类,命名为"SystemConfig.cs".代码例如以下: <span style="font-family:Microsoft YaHei;font-size:14px;">using System; using System.Collections.Generic; using System.Text; using System.Xml;

Spring利用propertyConfigurer类 读取.property数据库配置文件

1.Spring的框架中,org.springframework.beans.factory.config.PropertyPlaceholderConfigurer类可以将.properties(key/value形式)文件中 一些动态设定的值(value),在XML中替换为占位该键($key$)的值, .properties文件可以根据客户需求,自定义一些相关的参数,这样的设计可提供程序的灵活性. 2.在Spring中,使用PropertyPlaceholderConfigurer可以在XM

VC项目程序运行时设置指定目录读取Dll

方法一: 选择当前工程,右击"Properties" -> "Configuration Properties" -> "Debugging",在"Working Directory"设置dll的路径就可以了 方法二:设置项目的环境变量 方法三: CString strDllPath = GetExePath() + _T("System"); SetDllDirectory(strDllPat

WinForm开发框架--动态读取DLL模式

1\ WinForm开发框架--动态读取DLL模式   http://www.2cto.com/kf/201306/217199.html 2\ 广州爱奇迪     http://www.iqidi.com/   伍华聪的博客 | 爱奇迪淘宝店铺|

【mysql案例】mysql5.6.14配置my.cnf多实例,mysql_install_db初始化不读取my.cnf配置文件

1.1.1. mysql5.6.14多实例my.cnf时,初始化不读取my.cnf配置文件 [环境描述] 在多实例配置的/etc/my.cnf环境中,执行mysql_install_db后,启动Mysql报错. [操作步骤] /etc/my.cnf配置文件: [mysqld3307] innodb_data_file_path =ibdata1:1G:autoextend 初始化数据库: [[email protected] home]# mysql_install_db--datadir=/h

java读取jar包配置文件

前置条件:使用java -jar XXX.jar运行java程序,其中有部分代码是需要读取jar中的配置文件 问题描述: 发现无法读取到该配置文件 解决思路: 1. 该配置文件没有打到jar包中 2. 该配置文件损坏无法读取 3. 读取配置文件的代码有误 最终方案: 使用new FileInputStrem(file)的方式是无法读取到jar中的配置文件的,改为注释部分代码即可解决.这个链接http://blog.csdn.net/b_h_l/article/details/7767829的文章

c#读取xml文件配置文件Winform及WebForm-Demo详解

我这里用Winform和WebForm两种为例说明如何操作xml文档来作为配置文件进行读取操作. 1.新建一个类,命名为"SystemConfig.cs",代码如下: <span style="font-family:Microsoft YaHei;font-size:14px;">using System; using System.Collections.Generic; using System.Text; using System.Xml; us