ini文件(Initialization file),这种类型的文件中通常存放的是一个程序的初始化信息。ini文件由若干个节(Section)组成,每个Section由若干键(Key)组成,每个Key可以赋相应的值。读写ini文件实际上就是读写某个的Section中相应的Key的值,而这只要借助几个函数即可完成。
1. 把信息写入系统的win.ini文件
2、从系统的win.ini文件中读取信息
3.写入读取自己的ini
简单的INI例子:
下面示例显示它是如何生成的:
4.
四、如何判断一个ini文件中有多少个节
要判断一个ini文件中有多少个节,最简单的办法就是将所有的节名都找出来,然后统计节名的个数。而要将所有的节名找出来,使用GetPrivateProfileSectionNames函数就可以了,其原型如下:
DWORDGetPrivateProfileSectionNames(
LPTSTR lpszReturnBuffer, // 指向一个缓冲区,用来保存返回的所有节名。
DWORD nSize, // 参数lpszReturnBuffer的大小。
LPCTSTR lpFileName // 文件名,若该ini文件与程序在同一个目录下,
// 也可使用相对路径,否则需要给出绝度路径。
)
下面的是用来统计一个ini文件中共有多少个节的函数,当然,如果需要同时找到每个节中的各个键及其值,根据找到节名就可以很容易的得到了。
/* 统计共有多少个节
节名的分离方法:若chSectionNames数组的第一字符是'\0'字符,则表明有0个节。
否则,从chSectionNames数组的第一个字符开始,顺序往后找,直到找到一个'\0'字符,
若该字符的后继字符不是'\0'字符,则表明前面的字符组成一个节名。
若连续找到两个'\0'字符,则统计结束。 */
在VC程序中利用系统提供的GetPrivateProfileString及WritePrivateProfileString函数直接读写系统配置ini文件(指定目录下的Ini文件)。
假设在当前目录下有一个文件名为Tets.ini的文件,用于保存用户名和密码,文件格式如下:
[Section1]
Item1= huzhifeng
Item2= 1234565
①写INI文件
voidCINI_File_TestDlg::OnButtonWrite()
{
// TODO: Add your control notification handler code here
CStringstrSection = "Section1";
CStringstrSectionKey = "Item1";
charstrBuff[256];
CStringstrValue = _T("");
CStringstrFilePath;
strFilePath=GetCurrentDirectory(256,strBuff); // 获取当前路径。
strFilePath.Format("%s\\Test.ini",strBuff);
GetDlgItemText(IDC_EDIT_NAME,strValue); // 获取文本框内容:即姓名。
// 写入ini文件中相应字段。
WritePrivateProfileString(strSection,strSectionKey,strValue,strFilePath);
strSectionKey= "Item2";
GetDlgItemText(IDC_EDIT_PASSWORD,strValue); // 获取文本框内容:即密码。
WritePrivateProfileString(strSection,strSectionKey,strValue,strFilePath);
}
②读INI文件内容
void CINI_File_TestDlg::OnButtonRead()
{
// TODO: Add your control notification handler code here
CString strSection ="Section1";
CString strSectionKey = "Item1";
char strBuff[256];
CString strValue = _T("");
CString strFilePath;
strFilePath=GetCurrentDirectory(256, strBuff); //获取当前路径
strFilePath.Format("%s\\Test.ini", strBuff);
//读取ini文件中相应字段的内容
GetPrivateProfileString( strSection, strSectionKey,
NULL, strBuff,
80, strFilePath);
strValue = strBuff;
SetDlgItemText(IDC_EDIT_NAME, strValue);
strSectionKey = "Item2";
GetPrivateProfileString( strSection, strSectionKey,
NULL, strBuff,
80, strFilePath);
strValue=strBuff;
SetDlgItemText(IDC_EDIT_PASSWORD, strValue);
UpdateData(FALSE);
}
原文出处:(半未匀)曾文献老师
http://hi.baidu.com/__%B6%C0%B9%C2%B2%D0%D4%C6__/blog/item/79957c127edbd9c9c3fd78d0.html
BOOLIsFileExist(const char *szFileName) //判断文件是否存在
{
CFileStatus stat;
if(CFile::GetStatus(szFileName,stat))
return TRUE;
else
return FALSE;
}
// 读字符串
intReadINIString(CString INIFileName,CString INISection,CString Key,CString&Value) {
if(INIFileName=="" ||INISection=="" || Key=="") // 参数不对
{
Value.Format("%s",_T(""));
return -1;
}
if(!IsFileExist((LPTSTR)(LPCTSTR)INIFileName)) //ini文件不存在
{
Value.Format("%s",_T(""));
return -2;
}
::GetPrivateProfileString(INISection,Key,"",Value.GetBuffer(MAX_PATH),
MAX_PATH,INIFileName);
return 0;
}
//读整形变量
intReadINIUInt(CString INIFileName,CString INISection,CString Key,UINT &Value)
{
if(INIFileName=="" ||INISection=="" || Key=="")//参数不对
{
Value=0;
return -1;
}
if(!IsFileExist((LPTSTR)(LPCTSTR)INIFileName))//ini文件不存在
{
Value=0;
return -2;
}
Value=::GetPrivateProfileInt(INISection,Key,0,INIFileName);
return 0;
}
//获得应用程序的所在路径
intGetAppPath(CString &AppPath)
{
try
{
CString MoudleFile;
//得到文件绝对路径
GetModuleFileName(NULL,MoudleFile.GetBufferSetLength(MAX_PATH+1),MAX_PATH);
int pos=MoudleFile.ReverseFind(_T('\\'));
AppPath=MoudleFile.Left(pos+1);
}catch(...){
return -1;
}
return 0;
}
//按钮事件调用相关函数
voidCReadWriteINIfieDlg::OnButton1()
{
// TODO: Add your control notification handler code here
CString FilePath;
//CString strServerToIEClientPort;
UINT iServerToIEClientPort;
GetAppPath(FilePath);
m_IniFileName.Format("%scc.ini",FilePath);
//ReadINIString(m_IniFileName,"ServerHost","Port",strServerToIEClientPort);
ReadINIUInt(m_IniFileName,"ServerHost","Port",iServerToIEClientPort);
ReadINIString(m_IniFileName,"ServerHost","DataFileName",strServerToIEClientPort);
}
//判断文件是否存在
BOOLIsFileExist(const char *szFileName)
{
CFileStatus stat;
if(CFile::GetStatus(szFileName,stat))
return TRUE;
else
return FALSE;
}
intCSetDbData::GetIniData( CString INIFileName, CString INISection,
CString Key, CString &Value)
{
if(INIFileName=="" ||INISection=="" || Key=="")//参数不对
{
Value.Format("%s",_T(""));
return -1;
}
if(!IsFileExist((LPTSTR)(LPCTSTR)INIFileName))//ini文件不存在
{
Value.Format("%s",_T(""));
return -2;
}
::GetPrivateProfileString(INISection,Key,"",
Value.GetBuffer(MAX_PATH),MAX_PATH,INIFileName);
return 0;
}
intCSetDbData::SetIniData(CString INIFileName,CString INISection,
CString Key,CString Value)
{
if(INIFileName=="" ||INISection=="" || Key=="")//参数不对
{
Value.Format("%s",_T(""));
return -1;
}
if(!IsFileExist((LPTSTR)(LPCTSTR)INIFileName))//ini文件不存在
{
Value.Format("%s",_T(""));
return -2;
}
::WritePrivateProfileString(INISection,Key,Value,INIFileName);
return 0;
}
//删除键
intCSetDbData::DelIniData(CString INIFileName,CString INISection)
{
if(INIFileName=="" ||INISection=="")//参数不对
{
return -1;
}
if(!IsFileExist((LPTSTR)(LPCTSTR)INIFileName))//ini文件不存在
{
return -2;
}
::WritePrivateProfileString(INISection,NULL,NULL,INIFileName);
return 0;
}
window平台下读写ini文件的一个小小的实例
http://hi.baidu.com/zerowwj/blog/item/5b088ea790fc429ad043586f.html
/* ini文件的读写 */
#include
#include
#include
usingnamespace std;
voidmain()
{
CString strName;
CString strTemp;
int nAge;
strName = "zhangsan";
nAge = 12;
/*
* 此函数功能是向文件stud.ini文件里写入一段配置项记录:
* 其中配置段项名称为 "StudentInfo";配置项一个名称为Name;
* 其值为CString类型变量strName所指的内容
*/
::WritePrivateProfileString("StudentInfo","Name",strName,"d:\\stud.ini");
/*
* 此函数功能是向文件stud.ini文件里写入一段配置项记录:
* 其中配置段项名称为 "StudentInfo";配置项一个名称为Age;
* 其值为int类型变量nAge所指的内容,只是之前需要转换成CString类型
* 最后要指定写文件的路径和名称
*/
strTemp.Format("%d",nAge);
::WritePrivateProfileString("StudentInfo","Age",strTemp,"d:\\stud.ini");
/*
* 以下为读出,读出CString类型和int类型的方法不一样。函数的具体的功能可以查看MSDN
*/
CString strStudName;
int nStuAge;
::GetPrivateProfileString("StudentInfo","Name","defualt",
strStudName.GetBuffer(MAX_PATH),
MAX_PATH,"d:\\stud.ini");
nStuAge =::GetPrivateProfileInt("StudentInfo","Age",10,"d:\\stud.ini");
cout<<"strStudName = "< cout<<"nStuAge = "<< nStuAge< }