C++读取配置文件中的单行信息

C++读取配置文件中的单行信息


configfile.h文件

#ifndef CONFIGFILE_H
#define CONFIGFILE_H
#include <string>
#include <list>
#include <map>
#include <sstream>
#include <iostream>


class ConfigFile {
public:
ConfigFile(std::string filename);
ConfigFile();
bool load(std::string filename);

~ConfigFile();
void dump(void);

template < typename T>
T getvalue(std::string key) {
	std::string str = datamap[key];
	if (str=="") {
		std::cerr << "WARNING: '" << key <<"' was not defined in " << filename << "! Value is undefined!" << std::endl;
	}
	std::stringstream ss;
	ss << str;
	T value;
	ss >> value;
	return value;	
}

template < typename T>
T getvalue(std::string key, T defaultValue) {
	std::string str = datamap[key];
	if (str=="") {
		return defaultValue;
	}
	return getvalue<T>(key);
}

template < typename T>
T getvalueidx(std::string key,int idx, T defaultValue) {
	std::stringstream ss;
	ss << idx;
		std::string query=key+std::string("[")+ss.str()+std::string("]");
	return getvalue<T>(query,defaultValue);
}

template < typename T>
T getvalueidx(std::string key,int idx) {
	std::stringstream ss;
	ss << idx;
	std::string query=key+std::string("[")+ss.str()+std::string("]");
	return getvalue<T>(query);
}

private:

std::map<std::string,std::string> datamap;
std::string filename;
};

#endif

configfile.cpp文件

/*	Copyright 2010 Benjamin Reh <ich@benjaminreh.de>
*
*	This file is part of 'configfile'.
*
*    'configfile' is free software: you can redistribute it and/or modify
*    it under the terms of the GNU General Public License as published by
*    the Free Software Foundation version 3 of the License.
*
*    'configfile' is distributed in the hope that it will be useful,
*    but WITHOUT ANY WARRANTY; without even the implied warranty of
*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*    GNU General Public License for more details.
*
*    You should have received a copy of the GNU General Public License
*    along with 'configfile'.  If not, see <http://www.gnu.org/licenses/>.
*/
#include "configfile.h"
#include <fstream>

using namespace std;

void str2lower(string &str) {
	for(unsigned int i=0;i<str.size();i++)
	{
		str[i] = tolower(str[i]);
	}
}
std::string trim(std::string const& source, char const* delims = " \t\r\n") {
  std::string result(source);
  std::string::size_type index = result.find_last_not_of(delims);
  if(index != std::string::npos)
    result.erase(++index);

  index = result.find_first_not_of(delims);
  if(index != std::string::npos)
    result.erase(0, index);
  else
    result.erase();
  return result;
}


ConfigFile::ConfigFile() { }
ConfigFile::ConfigFile(string filename) {
	if(!load(filename))
		cerr << "Configfile '" << filename << "' not found!" << endl;
}
bool ConfigFile::load(string filename) {
	this->filename=filename;
	fstream f;
	f.open(filename.c_str(),fstream::in);
	if (!f.is_open())	{
		return false;
	}
	string line;
	int lnr=-1;
	while (getline(f,line))	{
		lnr++;
		//Skip Comments and empty lines
		if (! line.length()) continue;
	    if (line[0] == '#') continue;
    	if (line[0] == ';') continue;

		int posTrenner=line.find('=');
		if (posTrenner==-1)
			posTrenner=line.find(' ');
		if (posTrenner==-1) {
			cerr << "WARNING: Statement '" << line << "' in file "<< filename << ":"<<lnr<<" is invalid and therefor will be ignored" << endl;
			continue;
		}
		string key=trim(line.substr(0,posTrenner));
		string value=trim(line.substr(posTrenner+1));

		//Case insensitive
		str2lower(key);

		if (datamap[key]!="") {
			cerr << "WARNING: Statement '" << line << "' in file "<< filename << ":"<<lnr<<" redefines a value!" << endl;
		}
		datamap[key]=value;
	 }
	f.close();
	return true;
}

void ConfigFile::dump(void) {
	for (map<string,string>::iterator iter= datamap.begin(); iter!=datamap.end();iter++){
		cout << "key: '" << iter->first <<"' \t value: '"<< iter->second <<"'"<<endl;
	}
}
ConfigFile::~ConfigFile() {
}

参考:https://github.com/benreh/configfile

info.xml配置文件信息

cardurl=http://192.168.2.999/ease?mode=api_get_idcard&user_account=
fileurl=http://XXX.XXX.command
username=XXX
password=XXXX

在main()这测试

int main(){
	ConfigFile cfg("C:\...\info.xml");//配置文件所在的位置
	string cardURL=cfg.getvalue<string>("cardurl");
	string fileURL=cfg.getvalue<string>("fileurl");
	
	cout << cardURL << endl;//输出:http://192.168.2.999/ease?mode=api_get_idcard&user_account=
	cout << fileURL << endl;//输出:http://XXX.XXX.command
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值