VC读配置文件实例
更新时间:2014年10月21日 09:33:39 投稿:shichen2014
这篇文章主要介绍了VC读配置文件的方法,实例讲述了VC针对文件操作的技巧,需要的朋友可以参考下
本文实例讲述了VC读配置文件的方法,分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
char szBugCC[4096]={0};
int nRet = GetPrivateProfileSection("Setting", szBugCC, sizeof(szBugCC), BugConfig.c_str());
if (nRet > 0)
{
//过滤/0 /0 /00
DWORD dwIndex = 0;
char szTemp[128]={0};
while (dwIndex < nRet)
{
strcpy(szTemp, szBugCC+dwIndex);
//szTemp "11=11@163.com"
CString strTemp(szTemp);
int nPos = strTemp.Find("=");
m_combo_bugcc.AddString(strTemp.Left(nPos));
dwIndex += strlen(szTemp);
dwIndex++;
}
}
int nRet = GetPrivateProfileSection("Setting", szBugCC, sizeof(szBugCC), BugConfig.c_str());
if (nRet > 0)
{
//过滤/0 /0 /00
DWORD dwIndex = 0;
char szTemp[128]={0};
while (dwIndex < nRet)
{
strcpy(szTemp, szBugCC+dwIndex);
//szTemp "11=11@163.com"
CString strTemp(szTemp);
int nPos = strTemp.Find("=");
m_combo_bugcc.AddString(strTemp.Left(nPos));
dwIndex += strlen(szTemp);
dwIndex++;
}
}
配置文件格式:
复制代码 代码如下:
[Setting]
11=11@163.cn
22=22@163.cn
ope=0.cn
11=11@163.cn
22=22@163.cn
ope=0.cn
希望本文所述对大家的VC程序设计有所帮助。
相关文章
C/C++: Inline function, calloc 对比 malloc
以下是对c/c++中的malloc函数与calloc函数的区别以及它们之间的联系进行了介绍,需要的朋友可以过来参考下2016-07-07
最新评论