读取INI文件

来源:互联网 发布:淘宝兼职平台 编辑:程序博客网 时间:2024/04/29 19:31
//读取INI文件 INI ini = new INI(); 
using System;
using System.Text;
using System.Runtime.InteropServices; 
namespace QF 
{
/// <summary>
/// .INI文件 操作。
/// </summary>
public class INI
{
/// <summary>
/// 创建一个如下的INI对象
/// INI ini = new INI(@"C:/test.ini");
/// </summary>
public INI(string INIPath)
{
path = INIPath;
}
public string path;
//引用动态连接库方法
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section,string key,string def, StringBuilder retVal,int size,string filePath);

/// <summary>
/// 写入数据
/// </summary>
/// <PARAM name="Section"></PARAM>
/// 节点名
/// <PARAM name="Key"></PARAM>
/// 键名
/// <PARAM name="Value"></PARAM>
/// 值名
public void Write(string Section,string Key,string Value)
{
WritePrivateProfileString(Section,Key,Value,this.path);
}
/// <summary>
/// 读取INI数据
/// </summary>
/// <PARAM name="Section"></PARAM>
/// <PARAM name="Key"></PARAM>
/// <PARAM name="Path"></PARAM>
/// <returns></returns>
public string Read(string Section,string Key)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section,Key,"",temp, 255, this.path);
return temp.ToString();
}
}


 
原创粉丝点击