C++读取ini文件的类

C++读取ini文件的类

取自:http://www.viksoe.dk/code/all_mfc.htm,里面有各种MFC常用的类

// Ini.h: interface for the CIni class.
//
// Written by Bjarke Viksoe (bjarke@viksoe.dk)
// Copyright (c) 2000.
//
// This code may be used in compiled form in any way you desire. This
// file may be redistributed by any means PROVIDING it is 
// not sold for profit without the authors written consent, and 
// providing that this notice and the authors name is included. 
//
// This file is provided "as is" with no expressed or implied warranty.
// The author accepts no liability if it causes any damage to you or your
// computer whatsoever. It's free, so don't hassle me about it.
//
// Beware of bugs.


#if !defined(AFX_INI_H__2478E9E2_E904_11D1_93C1_241C08C10000__INCLUDED_)
#define AFX_INI_H__2478E9E2_E904_11D1_93C1_241C08C10000__INCLUDED_#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
//
// INI file class
//
// Author:
// Bjarke Viks鴈
// Description:
// Implements helper functions to access
// an .INI configuration file using
// conventional CString operations
//// Ini-file wrapper class
class CIni : public CObject  
{
public:CIni();CIni( LPCTSTR IniFilename );virtual ~CIni();// Methods
public:// Sets the current Ini-file to use.
   RETCODE SetIniFilename(LPCTSTR IniFilename);//// Reads an integer from the ini-file.UINT GetInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nDefault=0);// Reads a boolean value from the ini-file.BOOL GetBoolean(LPCTSTR lpszSection, LPCTSTR lpszEntry, BOOL bDefault=FALSE);// Reads a string from the ini-file.CString GetString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszDefault=NULL);// Reads a binaryt lump of data from the ini-file.BOOL GetBinary(LPCTSTR lpszSection, LPCTSTR lpszEntry, BYTE** ppData, UINT* pBytes);//// Writes an integer to the ini-file.BOOL WriteInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nValue);// Writes a boolean value to the ini-file.
   BOOL WriteBoolean(LPCTSTR lpszSection, LPCTSTR lpszEntry, BOOL bValue);// Writes a string to the ini-file.
   BOOL WriteString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszValue);// Writes a binary lump of data to the ini-file.
   BOOL WriteBinary(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPBYTE pData, UINT nBytes);// Writes an 'expand string' to the ini-file.
   BOOL WriteExpandString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszValue);//// Removes an item from the current ini-file.
   BOOL DeleteKey(LPCTSTR lpszSection, LPCTSTR lpszEntry);// Removes a complete section from the ini-file.
   BOOL DeleteSection(LPCTSTR lpszSection);// Variables
protected:CString m_IniFilename; // The current ini-file used.
};#endif // !defined(AFX_INI_H__2478E9E2_E904_11D1_93C1_241C08C10000__INCLUDED_)

Ini.cpp

// Ini.cpp: implementation of the CIni class.
// Author: Bjarke Viks鴈
//
// Description:
// Thin wrapper around the Win32 Windows Profile (Ini-file configuration)
// interface.
//
//

#include "stdafx.h"
#include "Ini.h"#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif//
// Construction/Destruction
//

CIni::CIni()
{m_IniFilename.Empty();
}CIni::CIni(LPCTSTR IniFilename)
{SetIniFilename( IniFilename );
}CIni::~CIni()
{// Flush .ini file// (This should perhaps not be here. We risk to slow//  down the system and this would be done at a more appropriate//  time by the OS scheduler anyway)
   ::WritePrivateProfileString( NULL, NULL, NULL, m_IniFilename );
}//
// Methods
//#define MAX_INI_BUFFER 300   // Defines the maximum number of chars we can// read from the ini file 

RETCODE CIni::SetIniFilename(LPCTSTR IniFilename)
{ASSERT(AfxIsValidString(IniFilename));m_IniFilename = IniFilename;if( m_IniFilename.IsEmpty() ) return RET_INVALIDARGS;return RET_OK;
};UINT CIni::GetInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nDefault)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));if( m_IniFilename.IsEmpty() ) return 0; // error
   CString sDefault;sDefault.Format( _T("%d"), nDefault );CString s = GetString( lpszSection, lpszEntry, sDefault );return _ttol( s );
};CString CIni::GetString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszDefault)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));if( m_IniFilename.IsEmpty() ) return CString();CString s;long ret = ::GetPrivateProfileString( lpszSection, lpszEntry, lpszDefault, s.GetBuffer( MAX_INI_BUFFER ), MAX_INI_BUFFER, m_IniFilename );s.ReleaseBuffer();if( ret==0 ) return CString(lpszDefault);return s;
};BOOL CIni::GetBoolean(LPCTSTR lpszSection, LPCTSTR lpszEntry, BOOL bDefault)
{CString s = GetString(lpszSection,lpszEntry);if( s.IsEmpty() ) return bDefault;TCHAR c = _totupper( s[0] );switch( c ) {case _T('Y'): // YEScase _T('1'): // 1 (binary)case _T('O'): // OKreturn TRUE;default:return FALSE;};
};BOOL CIni::GetBinary(LPCTSTR lpszSection, LPCTSTR lpszEntry, BYTE** ppData, UINT* pBytes)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));return FALSE;
};BOOL CIni::WriteInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nValue)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));CString s;s.Format( _T("%d"), nValue );return WriteString( lpszSection, lpszEntry, s );
};BOOL CIni::WriteBoolean(LPCTSTR lpszSection, LPCTSTR lpszEntry, BOOL bValue)
{CString s;bValue ? s=_T("Y") : s=_T("N");return WriteString( lpszSection, lpszEntry, s );
};BOOL CIni::WriteString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszValue)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));if( m_IniFilename.IsEmpty() ) return RET_NOTINITIALIZED;return ::WritePrivateProfileString( lpszSection, lpszEntry, lpszValue, m_IniFilename );
};BOOL CIni::WriteBinary(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPBYTE pData, UINT nBytes)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));return FALSE;
};BOOL CIni::WriteExpandString(LPCTSTR lpszSection, LPCTSTR lpszEntry, LPCTSTR lpszValue)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));return FALSE;
};BOOL CIni::DeleteKey(LPCTSTR lpszSection, LPCTSTR lpszEntry)
{ASSERT(AfxIsValidString(lpszSection));ASSERT(AfxIsValidString(lpszEntry));if( m_IniFilename.IsEmpty() ) return RET_NOTINITIALIZED;return ::WritePrivateProfileString( lpszSection, lpszEntry, NULL, m_IniFilename );
};BOOL CIni::DeleteSection(LPCTSTR lpszSection)
{ASSERT(AfxIsValidString(lpszSection));if( m_IniFilename.IsEmpty() ) return RET_NOTINITIALIZED;return ::WritePrivateProfileString( lpszSection, NULL, NULL, m_IniFilename );
};

 

posted on 2014-03-23 14:09 kernel_main 阅读(...) 评论(...) 编辑 收藏

转载于:https://www.cnblogs.com/kernel0815/p/3619006.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/432751.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

A20(emmc) 编译环境

1. 需要物理内存3G,或者调高虚拟内存,否则编译会报错(killed) 2. 安装jdk 3. apt-get install bison apt-get install flex apt-get install gperf apt-get install libswitch-perl apt-get install libxml2-utils

Linux查看设置系统时区

关于时区的概念,其实初中地理课已经涉及,很多人都多少了解一些,可能只是细节搞不太清楚。为什么会将地球分为不同时区呢?因为地球总是自西向东自转,东边总比西边先看到太阳,东边的时间也总比西边的早。东边…

SQL基础问题整理

在程序中,数据库操作是必不可少的部分,所以我们要备足数据库相关知识才能去应付程序中出现的种种问题。基于此,我特地在国外网站、博客上整理了一些问题,并附带了答案和解释、参考。为了保证“原汁原味”,我就保留了英…

计算机突然从桌面消失了,电脑桌面突然什么都没有了,怎么处理

★桌面-点击鼠标右键-点击排列图标-点击显示桌面图标★在桌面上右键点击→“属性”→桌面项→左下有个“自定义桌面”进入设置,把你需要的桌面项目打上勾,然后确定就行了。★先按ctrlaltdel三键打开任务管理器&#xf…

V210 时区

V210默认时区是格林尼治时间,只要把ubuntu的/etc/localtime文件拷贝到板子上就可以了 用date -R可以看到时区是否正确

腾讯或联姻优酷,微信嫁女模式引发互联网通婚潮流

据消息称:腾讯在前段时间联姻京东后有可能继续做甩手掌柜,这回要甩的是腾讯视频。 前几年,最火爆的电商业务除了电商外,再者一个就是视频业务了。 不知道大家还记得优酷当时的崛起之初的情景么?我来罗列一下: 1、 大…

微型计算机键盘上的西服的间称为,一台完整的微型计算机主要由主机箱. .键盘.鼠标及音箱.打印机组成....

阅读下面的文字,完成后面题目。(25分)“博客之父”方兴东(节选)打开百度,输入“方兴东’’搜索,100多万条信息赫然呈现。罩在方兴东头上的光环颇多:清华大学博士、专栏作家、互联网评论家……而“中国博客之父”的称号&#xff0c…

mplayer

mplayer -af volume20 *.mp3 经测试,volume在-50和50这个区间就可以了,0最佳,超过0就爆音

[翻译] 学习iOS开发的建议:如何从菜鸟到专家

[文章原地址] http://mobile.tutsplus.com/tutorials/iphone/ios-quick-tip-from-novice-to-expert/ 翻译有误之处请勿见笑,本人将在文章的部分地方添加注释,并根据需求增减文章内容,在此对原作者辛勤劳作表示感谢 iOS Quick Tip: From Novi…

计算机工程与应用查重吗,计算机工程期刊录用率_计算机工程与应用期刊_计算机八大核心期刊...

《计算机工程》杂志怎么样都是各高校开设的课程也不尽相同,但学习深度和侧重点不一样。计算机科学期刊写人脸检测的录取率高吗计算机专业发一篇sci相对比较容易,所以必须看你在那个杂志上发表,下面最顶级的也就是计算机一区的期刊&#xff0c…

如何将多个源文件编译为一个.ko

陆陆续续也写了几个Linux内核模块了,但每次都是把代码写在一个源文件中,上次尝试了写在两个.c文件中,结果没有编译通过。 无奈之下,将其中一个.c文件重命名成.h文件,再include当另一个当中。但是,在.h文件中…

未来计算机将具有图像识别 定理证明,[单选] 低温计与高温计所测温度的分界线为()。...

[单选] 低温计与高温计所测温度的分界线为()。更多相关问题【单选题】向一个栈顶指针为 HS 链式栈中插入一个 s 所指结点时,则执行( )。A. HS next s ; B. s nextHS next ; HS nexts ; C.【判断题】每年10月是青海湖观鸟的最好季节。【单…

[nodejs]国内npm安装nodejs modules失败的几个解决方案

使用npm安装node模块时经常有卡住安装失败的情况,如图所示。原因在于npm服务器在美国,还有就是某强大的防火墙作用。这样的问题导致很多新手放弃使用node,几乎每天都有新手再问这个问题。现在分享一下解决这个问题的解决方案 1.可以通过一劳永…

linux2.6内核Makefile详解

熟悉内核的Makefile对开发设备驱动、理解内核代码结构都是非常重要的linux2.6内核Makefile的许多特性和2.4内核差别很大,在内核目录的documention/kbuild/makefiles.txt中有详细的说明。给大家一个中文版的翻译 目录 1 概述 2 用户与作用 3 Kbuild文件--- 3.1 目标定…

phpstudy编写html,phpStudy简介

PHP(“PHP: Hypertext Preprocessor”,超文本预处理器的字母缩写)是一种被普遍应用的开放源代码的多用途脚本语言,它可嵌入到 HTML中,尤为适合 web 开发。下面是用 PHP 编写了一个 HTML 脚本,其中嵌入了一些代码来作一些事情(例如…

mysql command line client闪一下消失

在启动MySQL后,通过软件可以操作数据库。在windows程序下找到MySQL-MySQL Server 5.6-mysql command line client,本来可以出现一个界面让用户输入密码。 但是在按上面的操作安装后,打开mysql command line client却发现它闪一下后消失。 解决…

java 合并单元格 把数据合并没了_合并单元格

合并单元格同样也是在表格中进行,关于合并单元格我们需要了解的两个概念:colspan 合并列,rowspan 合并行。colspan(跨列)合并列:colspan属性常用在 td 中,用来指定单元格横向跨越的列数。比如:将下面表格的…

一步步学习微软InfoPath2010和SP2010--第九章节--使用SharePoint用户配置文件Web service(2)--在事件注册表单上创建表单加载规则...

下面练习中,你将添加表单加载规则,将四个文本框域和图片控件与用户配置文件web service连接。当使用用户配置文件web service时,你需要将控件和来自web service合适的域绑定。这个过程需要用户配置文件架构的导航和筛选,来抽取合适…

.config 和 kconfig以及 makefile的关系

当我们编写完一个驱动后,我们要把它以模块形式编译或者直接编译进内核时,需要修改相关文件,其中最重要的便是kconfig ,makefile。主要是分析一下三者之间的关系,然后就其语法简要的谈一下。当我们在内核源码目录下执行make &#…

光耦驱动单向可控硅_华越国际一文带路:可控硅触发设计技巧

序可控硅(Silicon Controlled Rectifier,简称SCR),是可控硅整流元件的简称,是一种具有三个PN结的四层结构的大功率半导体器件,亦称为晶闸管。具有体积小、结构相对简单、功能强等特点,是比较常用的半导体器件之一。家用电器中的调…