• 大小: 2KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: C/C++
  • 标签: INI文件  读写  linux  c++  

资源简介

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


评论

共有 条评论