how to use a C++ Property List (plist) serialization library (MIT license)

本文介绍了一个C++程序如何使用Plist库来解析名为XMLExample1.plist的文件,并展示了如何读取其中的字典、数组及特定变量等元素。通过迭代器遍历字典并打印键值,同时演示了获取数组和字典内特定类型的值的方法。
#include "stdafx.h"
#include "Plist.hpp"
#include <iostream>
using namespace std;
using namespace::Plist;


int _tmain(int argc, _TCHAR* argv[])
{
    dictionary_type dict; 
    Plist::readPlist("XMLExample1.plist", dict);


    for(dictionary_type::const_iterator it = dict.begin(); it != dict.end(); ++it)
    {
        cout<< "key: "<< it->first <<endl;
    }


    //读数组
    const array_type& plistArray = boost::any_cast<const array_type&>(dict.find("testArray")->second);
    cout << boost::any_cast<const int64_t&>(plistArray[0]) << endl;
    cout << boost::any_cast<const string&>(plistArray[1]).c_str() << endl;


    //读字典
    const dictionary_type& plistDic = boost::any_cast<const dictionary_type&>(dict.find("testDict")->second);
    dictionary_type::const_iterator it = plistDic.begin();
    cout << "key:" << it->first << endl;
    cout << boost::any_cast<const string&>(it->second) << endl;
    
    //读一个变量
    const Date& date = boost::any_cast<const Date&>(dict.find("testDate")->second);
    std::string strDate = date.timeAsXMLConvention();


    /*
    缺点:读取的数据类型不好动态判断,因为,读出的数据都放到了boost::any中了,类型无法认为识别。
    */


    return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值