c#读写INI文件
注明我很菜,所以希望你能把答案的每行都写上注释。谢谢!!我需要用C#在一个窗体下保存3个参数到INI文件中,用得时候还需要调用它。谢谢。如果有什么好的初学者论坛也推荐下。...
注明我很菜,所以希望你能把答案的每行都写上注释。谢谢!!
我需要用C#在一个窗体下保存3个参数到INI文件中,用得时候还需要调用它。谢谢。如果有什么好的初学者论坛也推荐下。不胜感激!! 展开
我需要用C#在一个窗体下保存3个参数到INI文件中,用得时候还需要调用它。谢谢。如果有什么好的初学者论坛也推荐下。不胜感激!! 展开
2个回答
展开全部
ini文件其实就是一个文本文件,它有固定的格式,节Section的名字用[]括起来,然后换行说明key的值:
[section]
key=value
如数据库服务器配置文件:
DBServer.ini
[Server]
Name=localhost
[DB]
Name=NorthWind
[User]
Name=sa
在C#中,对配置文件的读写是通过API函数来完成的,代码很简单:
using System;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;
namespace PubOp
{
public class OperateIniFile
{
#region API函数声明
[DllImport("kernel32")]//返回0表示失败,非0为成功
private static extern long WritePrivateProfileString(string section,string key,
string val,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 NoText,string iniFilePath)
{
if(File.Exists(iniFilePath))
{
StringBuilder temp = new StringBuilder(1024);
GetPrivateProfileString(Section,Key,NoText,temp,1024,iniFilePath);
return temp.ToString();
}
else
{
return String.Empty;
}
}
#endregion
#region 写Ini文件
public static bool WriteIniData(string Section,string Key,string Value,string iniFilePath)
{
if(File.Exists(iniFilePath))
{
long OpStation = WritePrivateProfileString(Section,Key,Value,iniFilePath);
if(OpStation == 0)
{
return false;
}
else
{
return true;
}
}
else
{
return false;
}
}
#endregion
}
}
简单说明以下方法WriteIniData()和ReadIniData()的参数。
Section参数、Key参数和IniFilePath不用再说,Value参数表明key的值,而这里的NoText对应API函数的def参数,它的值由用户指定,是当在配置文件中没有找到具体的Value时,就用NoText的值来代替。
展开全部
调用API函数读写:
1、追加引用
using System.Runtime.InteropServices;
2、定义API函数
////声明读写INI文件的API函数
[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);
3、调用
//写INI文件(参数应该看得明白,看不明白再问)
WritePrivateProfileString(Section, Key, Value, Path);
//读INI文件(值放在temp里)
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, Path);
return temp.ToString();
1、追加引用
using System.Runtime.InteropServices;
2、定义API函数
////声明读写INI文件的API函数
[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);
3、调用
//写INI文件(参数应该看得明白,看不明白再问)
WritePrivateProfileString(Section, Key, Value, Path);
//读INI文件(值放在temp里)
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp, 255, Path);
return temp.ToString();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询