在做应用系统开发时,管理配置是必不可少的。例如数据库服务器的配置、安装和更新配置等等。由于Xml的兴起,现在的配置文件大都是以xml文档来存储。比如Visual Studio.Net自身的配置文件Mashine.config,Asp.Net的配置文件Web.Config,包括我在介绍Remoting中提到的配置文件,都是xml的格式。
传统的配置文件ini已有被xml文件逐步代替的趋势,但对于简单的配置,ini文件还是有用武之地的。ini文件其实就是一个文本文件,它有固定的格式,节Section的名字用[]括起来,然后换行说明key的值:
[section]
key=value
如数据库服务器配置文件:
DBServer.ini
[Server]
Name=localhost
[DB]
Name=NorthWind
[User]
Name=sa
在C#中,对配置文件的读写是通过API函数来完成的,代码很简单:
INI配置文件操作类
public class IniTool
{
#region ---API函数声明---
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key,
string value, string filePath);
[DllImport("kernel32")]
private static extern long GetPrivateProfileString(string section,string key,
string def,StringBuilder retVal,int size,string filePath);
#endregion
#region ---对Ini文件操作(读写)---
public static string ReadIniData(string section,string key,string defValue,string iniFilePath)
{
if (File.Exists(iniFilePath))
{
StringBuilder str = new StringBuilder(1024);
GetPrivateProfileString(section, key, defValue, str, 1024, iniFilePath);
return str.ToString();
}
else
{
return string.Empty;
}
}
public static bool WriteIniData(string section, string key, string value, string iniFilePath)
{
if (File.Exists(iniFilePath))
{
long result = WritePrivateProfileString(section, key, value, iniFilePath);
return result == 0 ? false : true;
}
return false;
}
#endregion
}
简单说明以下方法WriteIniData()和ReadIniData()的参数。
Section参数、Key参数和IniFilePath不用再说,Value参数表明key的值,而这里的NoText对应API函数的def参数,它的值由用户指定,是当在配置文件中没有找到具体的Value时,就用NoText的值来代替。
出处:http://kb.cnblogs.com/page/43446/