博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++对properties配置文件操作工具类
阅读量:6828 次
发布时间:2019-06-26

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

源代码GitHub路径:

最近要使用c++对windows api相关接口的封装,有2个接口要求读写properties文件。

原以为网上应该有一大堆资料的,结果拜BAI度的大恩大德,一点相关的资料都没有。那就只能自己动手丰衣足食。再次感谢十分强大只是找不到相关资料的BAI度。

头文件

#pragma once

#ifndef CProperties_H

#define CProperties_H

#include 
#include
#include
#include
#include
#include
#include
using namespace std;#define IS_OK 1#define IS_ERROR 0typedef bool PSTATUS;class CProperties{private: string path;protected:public: CProperties(); virtual ~CProperties(); //打开文件 PSTATUS open(const char* path); //实现文件加载到map中 PSTATUS load(); void print(); void close(); vector
read(const char *k); PSTATUS write(const char *k,const char* v); void trim_first(string &s); void trim_end(string &s); void trim(string &s);};

#endif

# 源文件

#include "stdafx.h"#include "properties.h"/************************************************************************************************////*//*作者:王邵华//*email:loveofprogram@sina.com//*时间:20180404//*版本历程://*版本号    参与人      事项    //*V1.0.0.1  王邵华      创建  //***************************************************************************************************//***************************************************************************************************//*本工具类实现c++对properties文件的读写操作,//*1.支持单行注释如:行首除去空格后以 //、#、
开始的//* //这是单行注释//* #这是单行注释//*
//*2.支持节点 但节点并没有意义 [section]//*[section0]//*key=value//*[section1]//*key=value//*用到multimap所以存在key键有2个值而已,节点并没有起到区分的作用,这一点也符合properties配置文件要求规范的//*3.支持多行注释 /*第一行,第二行.....*///*案例(1)同行有/*..*/ 如:key=123/*oooooo*/b=890 结果保留key=123//*案例(2)多行有/*..*/ 如:key=123/*ooo//*0000000000000000000//*ooo*/b=890 结果保留key=123//*案例(3)行头行尾有/*..*/如:/*ooooo*/key=123 结果不保留//*//*//************************************************************************************************/static vector
vLine;static multimap
msKV;static bool mulremark = false;//多行注释开关CProperties::CProperties(){};CProperties::~CProperties(){};PSTATUS CProperties::open(const char* path){ /**************************************************************/ //判断是否是文本文档 而不是文件夹 此代码存在问题一直hFind = 0xFFFFFFFF //暂留 以便日后优化 //author:王邵华 //time: 20180404 /*WIN32_FIND_DATA fd; bool ret = true; HANDLE hFind = FindFirstFile(LPCWSTR(path), &fd); if ((hFind != INVALID_HANDLE_VALUE) && !(fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { ret = false; } FindClose(hFind); if (ret) { //文件属性不对 return IS_ERROR; }*/ /**************************************************************/ if (nullptr == path) { return IS_ERROR; } this->path = path; ifstream ifs; ifs.open(path,ios::in); if (!ifs) { return IS_ERROR;//打开文件失败 } string sLine; while(!ifs.eof()){ sLine = ""; getline(ifs,sLine); if (mulremark)//已打开多行注释开关 需判断该行有没有关闭开关 { if(sLine.find("*/") != string::npos){ mulremark = false; } continue;//无论开关是否关闭 继续读下一行数据 }else { string::size_type pos =sLine.find("/*");string sSubLine; if (pos != string::npos)//改行有多行注释开关 需打开 { string::size_type epos = sLine.rfind("*/"); mulremark = epos==string::npos || epos
2 && sSubLine[0] == '/' && sSubLine[1] == '/')continue; if (sSubLine.length()>4 && sSubLine[0] == '<' && sSubLine[1] == '!')continue; vLine.push_back(sSubLine); } } if (ifs.is_open()) { ifs.close(); } return IS_OK;}//实现文件加载到map中PSTATUS CProperties::load(){ string key,value;string sSubStr; for (int i = 0;i
::iterator itr = msKV.begin(); cout<<"################################################################################"<
first.c_str()<<";value:"<
second.c_str()<
CProperties::read(const char *k){ vector
vVauleCol; if (msKV.size()>0) { multimap
::size_type cnt = msKV.count(k); multimap
::iterator iter = msKV.find(k); for(;cnt > 0; cnt--, iter++) { vVauleCol.push_back(iter->second); } } return vVauleCol;}/**aim:将key=value追加到文本末尾,更新multimap映射插入*/PSTATUS CProperties::write(const char *k,const char* v){ if (nullptr == k || nullptr == v) { return IS_ERROR; //校验入参 } ofstream ofs; ofs.open(this->path.c_str(),ios::app); if(!ofs) { return IS_ERROR;//打开文件失败 } char sStr[1024] = {}; sprintf(sStr,"%s=%s",k,v); ofs<
<

调用实例

int _tmain1(int argc, _TCHAR* argv[]){

//########################################################//

//read
//1.创建对象open()文件
//2.load()加载到内存中
//3.read()读取相关key值的value
//4.close()释放资源

CProperties cprop;PSTATUS ret = cprop.open("D:\\job\\greatwall\\test\\bank.properties");if (ret != IS_OK){    cout<<"打开配置文件失败"<
vec = cprop.read("key3");for (int i=0; i

//########################################################//

//########################################################//

//write
//1.创建对象
//2.load()加载到内存中
//3.write()读取相关key值的value
//4.close()释放资源

CProperties cprop_write;ret = cprop_write.open("D:\\job\\greatwall\\test\\bank2.properties");cprop_write.write("aaa","bbb");cprop_write.write("aaa","bbb");vec = cprop_write.read("aaa");for (int i=0; i

转载于:https://blog.51cto.com/whish/2095389

你可能感兴趣的文章
[再寄小读者之数学篇](2014-05-20 一个分部积分)
查看>>
Java httpclient请求,解决乱码问题
查看>>
IE10、IE11 无法写入Cookie
查看>>
汉化Eclipse+配色方法(官方语言包)
查看>>
Ansi,UTF8,Unicode,ASCII编码的差别
查看>>
【delphi】Delphi过程、函数传递参数的八种方式
查看>>
严苛模式(StrictMode)
查看>>
HTML5+JS手机web开发之jQuery Mobile初涉
查看>>
人脸识别算法初次了解
查看>>
设计模式(十)组合(结构型)
查看>>
JAVA复制文件最快的算法
查看>>
UICamera(NGUI Event system)原理
查看>>
sudo nopasswd
查看>>
用自己的话描述wcf中的传输安全与消息安全的区别(二)
查看>>
99 Lisp Problems 列表处理(P1~P28)
查看>>
实用图片滑块,传送带,幻灯片效果【附源码】
查看>>
Bluez SPP实现代码分析(转)
查看>>
android中给TextView或者Button的文字添加阴影效果
查看>>
读《被投资人“送”入看守所》一文有感(转)
查看>>
生产环境线上測试的慘淡人生
查看>>