C++读写INI配置文件的类实例
来源:本站原创|时间:2020-01-10|栏目:C语言|点击: 次
本文实例讲述了C++读写INI配置文件的类。分享给大家供大家参考。具体如下:
1. IniReader.h文件:
#ifndef INIREADER_H #define INIREADER_H #include <windows.h> class CIniReader { public: CIniReader(LPCTSTR szFileName); int ReadInteger(LPCTSTR szSection, LPCTSTR szKey, int iDefaultValue); float ReadFloat(LPCTSTR szSection, LPCTSTR szKey, float fltDefaultValue); bool ReadBoolean(LPCTSTR szSection, LPCTSTR szKey, bool bolDefaultValue); LPTSTR ReadString(LPCTSTR szSection, LPCTSTR szKey, LPCTSTR szDefaultValue); private: TCHAR m_szFileName[255]; }; #endif //INIREADER_H
2. IniReader.cpp文件:
#include "IniReader.h" #include <iostream> #include <windows.h> CIniReader::CIniReader(LPCTSTR szFileName) { memset(m_szFileName, 0x00, sizeof(m_szFileName)); memcpy(m_szFileName, szFileName, _tcslen(szFileName)*sizeof(TCHAR)); } int CIniReader::ReadInteger(LPCTSTR szSection, LPCTSTR szKey, int iDefaultValue) { int iResult = GetPrivateProfileInt(szSection, szKey, iDefaultValue, m_szFileName); return iResult; } float CIniReader::ReadFloat(LPCTSTR szSection, LPCTSTR szKey, float fltDefaultValue) { TCHAR szResult[255]; TCHAR szDefault[255]; float fltResult; _stprintf_s(szDefault, 255, TEXT("%f"),fltDefaultValue); GetPrivateProfileString(szSection, szKey, szDefault, szResult, 255, m_szFileName); fltResult = (float)_tstof(szResult); return fltResult; } bool CIniReader::ReadBoolean(LPCTSTR szSection, LPCTSTR szKey, bool bolDefaultValue) { TCHAR szResult[255]; TCHAR szDefault[255]; bool bolResult; _stprintf_s(szDefault, 255, TEXT("%s"), bolDefaultValue? TEXT("True") : TEXT("False")); GetPrivateProfileString(szSection, szKey, szDefault, szResult, 255, m_szFileName); bolResult = (_tcscmp(szResult, TEXT("True")) == 0 || _tcscmp(szResult, TEXT("true")) == 0) ? true : false; return bolResult; } LPTSTR CIniReader::ReadString(LPCTSTR szSection, LPCTSTR szKey, LPCTSTR szDefaultValue) { LPTSTR szResult = new TCHAR[255]; memset(szResult, 0x00, sizeof(szResult)); GetPrivateProfileString(szSection, szKey, szDefaultValue, szResult, 255, m_szFileName); return szResult; }
3. IniWriter.h文件:
#ifndef INIWRITER_H #define INIWRITER_H #include <windows.h> class CIniWriter { public: CIniWriter(LPCTSTR szFileName); void WriteInteger(LPCTSTR szSection, LPCTSTR szKey, int iValue); void WriteFloat(LPCTSTR szSection, LPCTSTR szKey, float fltValue); void WriteBoolean(LPCTSTR szSection, LPCTSTR szKey, bool bolValue); void WriteString(LPCTSTR szSection, LPCTSTR szKey, LPCTSTR szValue); private: TCHAR m_szFileName[255]; }; #endif //INIWRITER_H
4. IniWriter.cpp文件:
#include "IniWriter.h" #include <iostream> #include <windows.h> CIniWriter::CIniWriter(LPCTSTR szFileName) { memset(m_szFileName, 0x00, sizeof(m_szFileName)); memcpy(m_szFileName, szFileName, _tcslen(szFileName)*sizeof(TCHAR)); } void CIniWriter::WriteInteger(LPCTSTR szSection, LPCTSTR szKey, int iValue) { TCHAR szValue[255]; _stprintf_s(szValue, 255, TEXT("%d"), iValue); WritePrivateProfileString(szSection, szKey, szValue, m_szFileName); } void CIniWriter::WriteFloat(LPCTSTR szSection, LPCTSTR szKey, float fltValue) { TCHAR szValue[255]; _stprintf_s(szValue, 255, TEXT("%f"), fltValue); WritePrivateProfileString(szSection, szKey, szValue, m_szFileName); } void CIniWriter::WriteBoolean(LPCTSTR szSection, LPCTSTR szKey, bool bolValue) { TCHAR szValue[255]; _stprintf_s(szValue, 255, TEXT("%s"), bolValue ? TEXT("True") : TEXT("False")); WritePrivateProfileString(szSection, szKey, szValue, m_szFileName); } void CIniWriter::WriteString(LPCTSTR szSection, LPCTSTR szKey, LPCTSTR szValue) { WritePrivateProfileString(szSection, szKey, szValue, m_szFileName); }
5. main.cpp文件:
#if defined(UNICODE) || defined(_UNICODE) #define tcout std::wcout #else #define tcout std::cout #endif #include <iostream> #include <windows.h> #include "IniWriter.h" #include "IniReader.h" int _tmain(int argc, _TCHAR* argv[]) { CIniWriter iniWriter(TEXT(".\\initest.ini")); iniWriter.WriteString(TEXT("Setting"), TEXT("Name"), TEXT("jianxx")); iniWriter.WriteInteger(TEXT("Setting"), TEXT("Age"), 27); iniWriter.WriteFloat(TEXT("Setting"), TEXT("Height"), 1.82f); iniWriter.WriteBoolean(TEXT("Setting"), TEXT("Marriage"), false); CIniReader iniReader(TEXT(".\\initest.ini")); LPTSTR szName = iniReader.ReadString(TEXT("Setting"), TEXT("Name"), TEXT("")); int iAge = iniReader.ReadInteger(TEXT("Setting"), TEXT("Age"), 25); float fltHieght = iniReader.ReadFloat(TEXT("Setting"), TEXT("Height"), 1.80f); bool bMarriage = iniReader.ReadBoolean(TEXT("Setting"), TEXT("Marriage"), true); tcout<<"Name:"<<szName<<std::endl <<"Age:"<<iAge<<std::endl <<"Height:"<<fltHieght<<std::endl <<"Marriage:"<<bMarriage<<std::endl; delete szName; return 1; }
希望本文所述对大家的C++程序设计有所帮助。
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10深入理解C++中常见的关键字含义
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10C++大数模板(推荐)
- 01-10浅谈C/C++中的static与extern关键字的使用详解
- 01-10深入C/C++浮点数在内存中的存储方式详解
- 01-10深入理解C/C++混合编程
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10delphi制作wav文件的方法
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置
- 01-11ajax实现页面的局部加载