博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++读取配置文件
阅读量:5961 次
发布时间:2019-06-19

本文共 1575 字,大约阅读时间需要 5 分钟。

在牛人的指导下,和有了较大改变。

逐行读取配置文件,然后逐行解析~

读取一次之后,将键值对存入map,之后都从map中去取,减少读取文件次数

主要代码如下:

/*** * read config file, add 
into map.* @param filepath (in)line text* @param return * -1:error,invalid line* 0:success* */int INIReader::readFile(const wstring &filename) { std::string strFilename(filename.begin(), filename.end()); wifstream infile(strFilename.c_str()); wstring buffer; while (getline(infile, buffer)) { parseContentLine(buffer); } return 0;}/*** * handle single line text,then add
into map.* @param filepath (in)line text* @param return * -1:error,invalid line* 0:success* */int INIReader::parseContentLine(wstring &contentLine) { contentLine = trim(contentLine); if (contentLine.size() < 1) { return 0; // blank line } if (contentLine.substr(0, 1) == ANNOTATION_SYMBOL1 || contentLine.substr(0, 1) == ANNOTATION_SYMBOL2) { return 0; // comment } wstring::size_type equalPos = contentLine.find_first_of(L"="); wstring::size_type startPos = 0; wstring::size_type endPos = contentLine.size() - 1; if (equalPos <= startPos || equalPos > endPos) { return -1; // invalid line } wstring key = rtrim(contentLine.substr(startPos, equalPos )); wstring value = ltrim(contentLine.substr(equalPos + 1, endPos)); paramMap.insert(std::make_pair(key, value)); //std::wcout <
<<"\t" << value << std::endl; return 0;}

 

点此整个代码工程

转载于:https://www.cnblogs.com/yejg1212/p/3183876.html

你可能感兴趣的文章
度量时间差
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
<气场>读书笔记
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
mysql开启binlog
查看>>
设置Eclipse编码方式
查看>>
分布式系统唯一ID生成方案汇总【转】
查看>>
并查集hdu1232
查看>>
Mysql 监视工具
查看>>
从前后端分离到GraphQL,携程如何用Node实现?\n
查看>>
Linux Namespace系列(09):利用Namespace创建一个简单可用的容器
查看>>
博客搬家了
查看>>
Python中使用ElementTree解析xml
查看>>
jquery 操作iframe、frameset
查看>>
解决vim中不能使用小键盘
查看>>