C++使用jsoncpp解析json


jsoncpp的安装

jsoncpp有依赖包,那就是scons。

1.安装scons

sudo apt-get install scons即可。

2.安装jsoncpp

步骤:
tar -zxf jsoncpp-src-0.5.0.tar.gz 
cd jsoncpp-src-0.5.0  
mv libs/linux-gcc-4.1.2/libjson_linux-gcc-4.1.2_libmt.so /lib 
mv include/json/ /usr/include
以上步骤执行完即可。

下面可以写个测试文件。
#include <iostream>
#include <json/json.h>
using namespace std;

int ParseJsonFromString()  
{  
    const char* str = "{\"user_id\": \"06141007\", \"passwd\": \"3a5cd\", \"user_name\": \"Tom\",\"degree\": 47}";  
  
    Json::Reader reader;  
    Json::Value root;  
    if (reader.parse(str, root)){  
        std::string user_id = root["user_id"].asString();   
        std::string passwd = root["passwd"].asString();   
        std::string user_name = root["user_name"].asString();   
        int degree = root["degree"].asInt();  
    
        cout<<user_id<<endl;
        cout<<passwd<<endl;
        if(passwd.compare("1") != 0){ 
            cout<<"passwd error, please try again"<<endl;
            exit(1);
        }   
        cout<<user_name<<endl;
        cout<<degree<<endl;
    }   
    return 0;  
}

int main()
{
    ParseJsonFromString();

    return 0;
}
输出:


 编译时不要忘了libjson的链接库加进去就可以了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值