提前对格式表示抱歉。想不通...
我通过参数将配置文件传递给程序
我正在尝试从特定参数中读取值
我有一个 cofigReader 类,它具有以下方法,用于从给定特定参数的配置文件中返回字符串
我的问题,
它永远找不到参数。found 是 0 或 -1....
string configReader::value(string config_file, string parameter)
{
string value;
char config_delimiter = '=';
size_t found;
file.open(config_file);
std::string line;
bool param_found = false;
while(param_found == false){
while (!file.eof())
{
getline(file,line);
logger.writetolog("INFO","Looking for " + parameter +
" on line "+ line);
found = line.find(parameter);
logger.writetolog("INFO",int(found));
if(found!=string::npos){
param_found = true;
}
}
param_found = true;
}
if (found!=string::npos)
{
size_t a = line.find(config_delimiter)+1;
logger.writetolog("INFO","Found" + parameter +
"splitting string at delimter" + config_delimiter +
" and return right side value");
value = line.substr(a);
return value;
}
else
{
return value;
}
file.close();
}
更多信息。配置文件长这样。
toemail=someemailaddress@gmail.com
outputdir=C:\tmp
像这样使用的 configReader 类
//attempt to parse out the required parameters for the program
string toemail = config.value(configFileArg,"toemail");
它总是返回空