读写Ini

来源:互联网 发布:嵌入式软件专业排名 编辑:程序博客网 时间:2024/05/16 10:17

 可以通过调用kernel.dll中的两个api:WritePrivateProfileString,GetPrivateProfileString来实现对ini 文件的读些。

具体实现的代码如下:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
using System.Text;


namespace iniprocess
{

public class Form : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox textBox;
private System.Windows.Forms.Button button;
private System.Windows.Forms.Button button;

[DllImport("kernel")]
private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);
[DllImport("kernel")]
private static extern int GetPrivateProfileString(string section,string key,string def, StringBuilder retVal,
int size,string filePath);

public void IniWriteValue(string Section,string Key,string Value,string filepath)//对ini文件进行写操作的函数
{
WritePrivateProfileString(Section,Key,Value,filepath);
}

public string IniReadValue(string Section,string Key,string filepath)//对ini文件进行读操作的函数
{
StringBuilder temp = new StringBuilder();
int i = GetPrivateProfileString(Section,Key,"",temp,
, filepath);
return temp.ToString();

}

 


private void button_Click(object sender, System.EventArgs e)
{

this.textBox .Text= IniReadValue("ODBC bit Data Sources","MS Access Database","e://temp//ODBC.INI");

}

private void button_Click(object sender, System.EventArgs e)
{

IniWriteValue ("ODBC bit Data Sources","MS Access Database",this.textBox .Text,"e://temp//ODBC.INI");
}
}

原创粉丝点击