C#读取配置文件浅析(转自:http://developer.51cto.com/art/200908/143706.htm)

来源:互联网 发布:248rr新域名 编辑:程序博客网 时间:2024/04/27 16:35

C#读取配置文件是如何实现的呢?本文就C#读取配置文件方面向你介绍相关内容。希望本文能对大家有所帮助。

AD:

C#读取配置文件是如何实现的呢?在.Net中提供了配置文件,让我们可以很方面的处理配置信息,这个配置是XML格式的。而且.Net中已经提供了一些访问这个文件的功能。

C#读取配置文件1、读取配置信息

下面是一个配置文件的具体内容:

  1.  
  2.  
  3. "coal" value="一二三" />  
  4. "inWellTime" value="5" /> 

.Net提供了可以直接访问(注意大小写)元素的方法,在这元素中有很多的子元素,这些子元素名称都是“add”,有两个属性分别是“key”和“value”。一般情况下我们可以将自己的配置信息写在这个区域中,通过下面的方式进行访问:

  1. String ConString=System.Configuration.ConfigurationSettings.AppSettings["inWellTime"]; 

在AppSettings后面的是子元素的key属性的值,例如AppSettings["inWellTime"],我们就是访问这个子元素,它的返回值就是“5”,即value属性的值。

C#读取配置文件2、设置配置信息

如果配置信息是静态的,我们可以手工配置,要注意格式。如果配置信息是动态的,就需要我们写程序来实现。在.Net中没有写配置文件的功能,我们可以使用操作XML文件的方式来操作配置文件。

写了个WinForm中读写配置文件App.config的类

C#读取配置文件代码如下:

  1. using System;  
  2. using System.Configuration;  
  3. using System.Xml;  
  4. using System.Data;  
  5.  
  6. namespace cn.zhm.common  
  7. {  
  8.  ///   
  9.  /// ConfigClass 的摘要说明。  
  10.  ///   
  11.  public class ConfigClass  
  12.  {  
  13.  public string strFileName;  
  14.  public string configName;  
  15.  public string configValue;  
  16.  public ConfigClass()  
  17.  {  
  18.  //  
  19.  // TODO: 在此处添加构造函数逻辑  
  20.  //  
  21.  }  
  22.  
  23.  public string ReadConfig(string configKey)  
  24.  {  
  25.  configValue = "";  
  26.  configValue = ConfigurationSettings.AppSettings[""+configKey+""];  
  27.  return configValue;  
  28.  }  
  29.    
  30. //得到程序的config文件的名称以及其所在的全路径  
  31.  public void SetConfigName(string strConfigName)  
  32.  {  
  33.  configName = strConfigName;  
  34.  //获得配置文件的全路径  
  35.  GetFullPath();  
  36.  }  
  37.  
  38.  public void GetFullPath()  
  39.  {  
  40.  //获得配置文件的全路径  
  41.  strFileName=AppDomain.CurrentDomain.BaseDirectory.ToString()+configName;  
  42.  }  
  43.  
  44.  public void SaveConfig(string configKey,string configValue)  
  45.  {  
  46.  XmlDocument doc=new XmlDocument();  
  47.  doc.Load(strFileName);  
  48.  //找出名称为“add”的所有元素  
  49.  XmlNodeList nodes=doc.GetElementsByTagName("add");  
  50.  for(int i=0;i {  
  51.  //获得将当前元素的key属性  
  52.  XmlAttribute att=nodes[i].Attributes["key"];  
  53.  //根据元素的第一个属性来判断当前的元素是不是目标元素  
  54.  if (att.Value== ""+configKey+"")   
  55.  {  
  56.  //对目标元素中的第二个属性赋值  
  57.  att=nodes[i].Attributes["value"];  
  58.  att.Value=configValue;  
  59.  break;  
  60.  }  
  61.  }  
  62.  //保存上面的修改  
  63.  doc.Save(strFileName);  
  64.  }  
  65.  }  

C#读取配置文件应用如下:

C#读取配置文件之读取:

  1. ConfigClass config = new ConfigClass();  
  2. string coal = config.ReadConfig("coal");  
  3. this.tbOpenFile.Text = config.ReadConfig("inWellTime"); 

C#读取配置文件之写:

  1. ConfigClass config = new ConfigClass();  
  2. //得到程序的config名:DataOperate.exe.config;  
  3. config.SetConfigName("DataOperate.exe.config");  
  4. config.SaveConfig("coal","三二一");   
  5. config.SaveConfig("inWellTime","10"); 

注意:当修改完App.config。文件后,程序中用到的App.config文件的“key”对应的“value”值需要重读,否则修改后修改并不能立即起作用,而要等下次程序重启后才可以读取到修改后的App.config属性值。

C#读取配置文件的相关内容就向你介绍到这里,希望对你学习C#读取配置文件有所帮助。

原创粉丝点击