码迷,mamicode.com
首页 > 其他好文 > 详细

自己写配置文件

时间:2014-08-05 14:14:49      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:c++   编程   cpp   应用程序   windows   

记录一个加载配置文件的代码段,以保存以后使用

bool Consumer::loadConfigFile()

{
if( ConfigMap.size() != 0 )
ConfigMap.clear();
char szFilePath[256]={0};  
GetModuleFileNameA(NULL, szFilePath, 255);  
(strrchr(szFilePath, ‘\\‘))[0] = 0; // 删除文件名,只获得路径字串 
std::string path = szFilePath;
path+= "\\config.bat";




FILE* fp = fopen( path.c_str(), "r");
if(fp == NULL)
{
char buf[128];
sprintf_s(buf,"%s open failed ",path);
ExtLogger.Out( buf );
return false;
}
char buff[50];
while(fgets(buff, 50, fp))
{
for(int i=0; i< strlen(buff); i++)
{
if(buff[i] == ‘\n‘)
buff[i] = 0;
}
std::string strSymbol = buff;
int pos = strSymbol.find(‘=‘,0);
ConfigMap[strSymbol.substr(0,pos)] = strSymbol.substr(pos+1, strSymbol.length()-pos-1);
}
if( ConfigMap.size() == 0 )
{
ExtLogger.Out( "ConfigFile %s can not read any data.", path.c_str() ); 
return false;
}
ExtLogger.Out( "configuration file is Loaded successfully!" );
fclose(fp);
return true;
}

自己写配置文件,布布扣,bubuko.com

自己写配置文件

标签:c++   编程   cpp   应用程序   windows   

原文地址:http://blog.csdn.net/ctxbloger/article/details/38383215

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!