读取 INI 文件

☆樱花仙子☆ 提交于 2020-01-26 03:49:14

 

//读取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, 255this.path);
return temp.ToString();
}
}
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!