资源简介
ini文件的读写,支持字符串、整型、浮点数三种类型。
接口简单易用。提供例子。
在linux(gcc)和WindowsXP(vs2005)下测试通过。
代码片段和文件信息
#include “zini.h“
#include
using namespace std;
int main(int argc char *argv[])
{
if (!ZIni::writeString(“Sect1“ “Key1_1“ “hello“ “test.ini“) ||
!ZIni::writeString(“Sect1“ “Key1_2“ “world“ “test.ini“) ||
!ZIni::writeInt(“Sect2“ “Key2_1“ 1984 “test.ini“) ||
!ZIni::writeDouble(“Sect3“ “Key3_1“ 3.14159 “test.ini“) ||
!ZIni::writeDouble(“Sect3“ “Key3_2“ 2.71828 “test.ini“))
{
cout << “write failed!“ << endl;
}
cout << ZIni::readString(“Sect1“ “Key1_1“ “nothing“ “test.ini“) << endl;
cout << ZIni::readString(“Sect1“ “Key1_2“ “nothing“ “test.ini“) << endl;
cout << ZIni::readString(“Sect1“ “Key1_3“ “nothing“ “test.ini“) << endl;
cout << ZIni::readInt(“Sect2“ “Key2_1“ 0 “test.ini“) << endl;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1330 2010-04-30 14:14 zini\main.cpp
文件 102 2010-04-30 14:14 zini\test.ini
文件 6838 2010-04-30 14:14 zini\zini.cpp
文件 2217 2010-04-30 14:14 zini\zini.h
目录 0 2010-04-30 14:17 zini
----------- --------- ---------- ----- ----
10487 5
- 上一篇:C语言经典100例PDF
- 下一篇:linux下用c语言实现简单的FTP客户端
相关资源
- DSP28335通过SPI读写SD卡例程
- 51_单片机读写SD_MMC
- 51+sl811读写U盘的源程序+原理图
- pic单片机读写ft245芯片
- 一个很简单的Ubuntu下读写串口的C++程
- C++实战源码-根据INI文件创建菜单
- C++ 使用CFile类读写文件
- C++ 将用户登录时间写入INI文件
- C++ 获取INI文件中记录的数据库配置信
- C++ 获取INI文件中所有节名
- C++ 向INI文件指定节下写入数据
- C++ 向INI文件中指定键值写入字符串数
- C++ 获取INI文件固定节下的键名及数据
- C++ 获取INI文件中指定键值下字符串数
- C++ 获取INI文件中指定键值下整型数据
- C++ 将指定目录下文件名列表写入INI文
- C++ 利用INI文件对软件进行注册
- c++ 通过dao 读写 access文件
- Aspose.Cells读写Excel或Word,生成PDF文件
- MFC读写Excel操作
- DXFRead 读写CAD的
- 给WINCC写的DLL 读写ini文件
- VC++读写FAT32操作
- C++按行读写TXT文本文档,可设置分隔
- 用openGL 读写wrl文件
- 标准C/C++读写配置文件类,读写ini文件
- 高速缓存文件读写.cpp
- 纯c读写ini配置文件
- EEPROM 25LC256读写源码 C++
- C++实现USB HID设备读写代码
评论
共有 条评论