首页 > 编程 > .NET > 正文

如何使用.NET配置文件(一)

2024-07-10 12:58:45
字体:
来源:转载
供稿:网友
 .net的应用程序配置文件,使用的是xml格式。相对ini文件来说,它的功能要强上不少,而且具有很强的可扩展性。它的缺点是不能直接进行写操作,也就是说,不能直接在程序中修改配置文件的数据(当然不是指不能,不过不是本文讨论的范围)。本文主要目的是探讨如何扩展配置文件,并在其加入各种自定义配置信息。

    .net的应用程序配置文件,使用的是xml格式。相对ini文件来说,它的功能要强上不少,而且具有很强的可扩展性。它的缺点是不能直接进行写操作,也就是说,不能直接在程序中修改配置文件的数据(当然不是指不能,不过不是本文讨论的范围)。本文主要目的是探讨如何扩展配置文件,并在其加入各种自定义配置信息。
   
    1. 使用<appsettings>
        简单的配置信息,可以直接放入<appsettings>标记中。如:
<?xml version="1.0" encoding="utf-8"?>
  <appsettings>
 <add key="logfile" value="d:/log/debug.log"/>
  </appsettings> 
</configuration>
        相应访问代码如下:       
string filename = system.configuration.configurationsettings.appsettings.get("logfile");
 
    2. 自定义配置节(section)名称
        比如,我们要使用下面的配置结构,将配置信息归类分组:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- 需要在此处加入自定义配置声明 -->
<!-- 以下是自定义配置的内容 -->
<myconfig>
  <mydictionary>
    <add key="area" value="fuzhou"/>
    <add key="device" value="printer"/> 
    <add key="customer" value="muf"/>
  </mydictionary>
  <mynamevalue>
    <add key="area" value="fuzhou"/>
    <add key="device" value="printer"/> 
    <add key="customer" value="muf"/>
  </mynamevalue>
  <myinfo
    area="fuzhou" device="printer" customer="muf"
  />
</myconfig>
</configuration>

        但是这样是不行的。我们必须要在配置文件前面加入声明:
  <!-- 以下是自定义配置的声明 -->
  <configsections>
    <sectiongroup name="myconfig">
         <section name="mydictionary"
            type="system.configuration.namevaluesectionhandler, system, version=1.0.3300.0, culture=neutral, publickeytoken=b77a5c561934e089" />
        <section name="mynamevalue"
            type="system.configuration.dictionarysectionhandler, system, version=1.0.3300.0, culture=neutral, publickeytoken=b77a5c561934e089" />
        <section name="myinfo"
            type="system.configuration.singletagsectionhandler, system, version=1.0.3300.0, culture=neutral, publickeytoken=b77a5c561934e089" />
    </sectiongroup>
  </configsections> 

        把这一段放入配置文件中,我们的配置结构就可以正常使用了。声明中,<sectiongroup>用来定义不含配置数据的节的名称。<section>用来定义含有自定义配置数据的节的名称。<section type>用来指定定义配置数据的类型。.net已经定义了3种配置类型:
  a. namevaluesectionhandler
        相应访问代码如下:        
namevaluecollection mynamevalue= (namevaluecollection)system.configuration.configurationsettings.appsettings.get(@"myconfig/mynamevalue");
string area = mynamevalue["area"];
string device= mynamevalue["device"];
string customer = mynamevalue["customer "];

  b. dictionarysectionhandler
        相应访问代码如下:        
hashtable mynamevalue= (hashtable)system.configuration.configurationsettings.appsettings.get(@"myconfig/mydictionary");
string area = mynamevalue["area"];
string device= mynamevalue["device"];
string customer = mynamevalue["customer "];

  c. singletagsectionhandler
        相应访问代码如下:        
hashtable mynamevalue= (hashtable)system.configuration.configurationsettings.appsettings.get(@"myconfig/myinfo");
string area = mynamevalue["area"];
string device= mynamevalue["device"];
string customer = mynamevalue["customer "];

        这三种类型的详细信息,可以参考 msdn 文档。同时.net 还定义了ignoresectionhandler类型,为 system.configuration 之外的系统所读取和处理的配置节提供节处理程序定义。
        除此之外,.net提供了iconfigurationsectionhandler接口,这样我们还可以自行进行扩展,以设计出我们自已的配置形式。

(待续)


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表