热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C++标准库实现INI文件的读写操作类

本文介绍了一个基于C++标准库实现的INI文件读写操作类。该类在现有网络资源的基础上进行了扩展和优化,增加了获取当前可执行文件路径和宽字节与多字节字符串转换的功能。通过这些增强功能,该类能够更好地适应各种应用场景,提高代码的可移植性和健壮性。具体实现细节请参见`IniFileSTL.h`文件。

本类是在网络上的一个标准ini读写类修改扩展而来,新增了获取当前可执行文件路径,宽字节转多字节功能


IniFileSTL.h:

#ifndef _FISH_INI_FILE_
#define _FISH_INI_FILE_#include
#include namespace fish
{
using namespace std;class IniFileSTL
{
public:explicit IniFileSTL(const string &fileName);~IniFileSTL(void);bool ReadFile(void);string ReadString( const string §ion, const string &key, const string &value );int ReadInt( const string §ion, const string &key, int value );bool WriteString( const string §ion, const string &key, const string &value );bool WriteInt( const string §ion, const string &key, int value );bool RemoveSection( const string §ion );bool RemoveKey( const string §ion, const string &key );bool WriteFile(void);//获取当前可执行文件的路径(不包含EXE文件名)static string GetExeDir();//宽字节转多字节(wchar-char)static char* WcharToChar(const wchar_t* wp);//多字节转宽字节(char-wchar)static wchar_t* CharToWchar(const char* cp);
private:static string Trim( const string &str );static string LTrim( const string &str );static string RTrim( const string &str );
private:string m_fileName;vector m_vctLine;
};}#endif//简单使用例子
//#include
//#include
//#include "IniFile.h"
//
//using namespace fish;
//
//int main(int argc, char **argv)
//{
// IniFile ini("./test.ini");
// cout<// cout<// return 0;
//}

IniFileSTL.cpp&#xff1a;

#include "stdafx.h"
#include "IniFileSTL.h"
#include
#include
#include
namespace fish
{IniFileSTL::IniFileSTL(const string &fileName)
:m_fileName(fileName)
{ReadFile();
}IniFileSTL::~IniFileSTL(void)
{WriteFile();
}//获取当前可执行文件的路径&#xff08;不包含EXE文件名&#xff09;
string IniFileSTL::GetExeDir()
{wchar_t exeFullPath[MAX_PATH]; // Full path string StrPath&#61;" "; GetModuleFileName(NULL, exeFullPath, MAX_PATH); StrPath&#61;(string)WcharToChar(exeFullPath); // Get full path of the file int leng &#61; StrPath.length();int pos &#61; StrPath.find_last_of(&#39;\\&#39;, StrPath.length()); StrPath&#61;StrPath.substr(0, pos); return StrPath.substr(0, pos); // Return the directory without the file name
}//宽字节转多字节(wchar-char)
char* IniFileSTL::WcharToChar(const wchar_t* wp)
{locale old_loc &#61; locale::global(locale(""));size_t len &#61; wcslen(wp)*sizeof(wchar_t);size_t converted&#61;0;char*CStr;CStr&#61;(char*)malloc(len);wcstombs_s(&converted,CStr,len,wp,_TRUNCATE);locale::global(old_loc);return CStr;
}//多字节转宽字节&#xff08;char-wchar&#xff09;
wchar_t* IniFileSTL::CharToWchar(const char* cp)
{locale old_loc &#61; locale::global(locale(""));size_t len &#61; strlen(cp)*sizeof(char);size_t converted&#61;0;wchar_t *WStr;WStr&#61;(wchar_t*)malloc(2*len);mbstowcs_s(&converted,WStr,len,cp,_TRUNCATE);locale::global(old_loc);return WStr;
}bool IniFileSTL::ReadFile( void )
{ifstream in(m_fileName.c_str());bool bopen &#61; in.is_open();string line;while( getline(in,line) ){m_vctLine.push_back(line);}return true;
}string IniFileSTL::ReadString( const string §ion, const string &key, const string &value )
{for( size_t i &#61; 0;i }bool IniFileSTL::WriteString( const string §ion, const string &key, const string &value )
{for( size_t i &#61; 0;i }bool IniFileSTL::RemoveSection( const string §ion )
{for( size_t i &#61; 0;i }bool IniFileSTL::RemoveKey( const string §ion, const string &key )
{for( size_t i &#61; 0;i }bool IniFileSTL::WriteFile( void )
{ofstream out(m_fileName.c_str());for( size_t i &#61; 0; i }int IniFileSTL::ReadInt( const string §ion, const string &key, int value )
{string str &#61; ReadString( section, key, "" );if( "" &#61;&#61; str ){return value;}istrstream in( str.c_str() );int ret &#61; 0;in>>ret;return ret;
}bool IniFileSTL::WriteInt( const string §ion, const string &key, int value )
{ostrstream out;out<}string IniFileSTL::LTrim( const string &str )
{size_t pos &#61; 0;while( pos !&#61; str.size() ){if( &#39; &#39; &#61;&#61; str[pos] ){&#43;&#43;pos;}else{break;}}return str.substr(pos);
}string IniFileSTL::RTrim( const string &str )
{size_t pos &#61; str.size() - 1;while( pos >&#61; 0 ){if(&#39; &#39; &#61;&#61; str[pos]){--pos;}else{break;}}return str.substr( 0, pos &#43; 1 );
}string IniFileSTL::Trim(const string &str)
{return LTrim( RTrim(str) );
}}

 


简单使用案例&#xff1a;

string str;fish::IniFileSTL ini(fish::IniFileSTL::GetExeDir()&#43;"\\cfglocal.ini");str&#61;ini.ReadString("OccMarkShow","Showflag","0");

参考文件&#xff1a;csdn下载资源


推荐阅读
  • 问题描述现在,不管开发一个多大的系统(至少我现在的部门是这样的),都会带一个日志功能;在实际开发过程中 ... [详细]
  • 本问题涉及在给定的无向图中寻找一个至少包含三个节点的环,该环上的节点不重复,并且环上所有边的长度之和最小。目标是找到并输出这个最小环的具体方案。 ... [详细]
  • 洛谷 P4009 汽车加油行驶问题 解析
    探讨了经典算法题目——汽车加油行驶问题,通过网络流和费用流的视角,深入解析了该问题的解决方案。本文将详细阐述如何利用最短路径算法解决这一问题,并提供详细的代码实现。 ... [详细]
  • HTML:  将文件拖拽到此区域 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 本文通过C++语言实现了一个递归算法,用于解析并计算数学表达式的值。该算法能够处理加法、减法、乘法和除法操作。 ... [详细]
  • 问题场景用Java进行web开发过程当中,当遇到很多很多个字段的实体时,最苦恼的莫过于编辑字段的查看和修改界面,发现2个页面存在很多重复信息,能不能写一遍?有没有轮子用都不如自己造。解决方式笔者根据自 ... [详细]
  • Web动态服务器Python基本实现
    Web动态服务器Python基本实现 ... [详细]
  • 本文介绍如何手动实现一个字符串连接函数,该函数不依赖于C语言的标准字符串处理函数,如strcpy或strcat。函数原型为void concatenate(char *dest, char *src),其主要作用是将源字符串src追加到目标字符串dest的末尾。 ... [详细]
  • 本题要求计算一组正整数的最小公倍数(LCM)。输入包括多组测试数据,每组数据首先给出一个正整数n,随后是n个正整数。 ... [详细]
  • 小编给大家分享一下Vue3中如何提高开发效率,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获, ... [详细]
  • linux网络子系统分析(二)—— 协议栈分层框架的建立
    目录一、综述二、INET的初始化2.1INET接口注册2.2抽象实体的建立2.3代码细节分析2.3.1socket参数三、其他协议3.1PF_PACKET3.2P ... [详细]
  • 本文详细介绍了如何在Windows操作系统中配置和使用Lex(Flex)与Yacc(Bison),包括软件的下载、安装以及通过示例验证其正确性的步骤。 ... [详细]
  • c语言二元插值,二维线性插值c语言
    c语言二元插值,二维线性插值c语言 ... [详细]
  • 在Qt框架中,信号与槽机制是一种独特的组件间通信方式。本文探讨了这一机制相较于传统的C风格回调函数所具有的优势,并分析了其潜在的不足之处。 ... [详细]
author-avatar
Z-ji
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有