欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++ qt 使用jsoncpp json 读写操作

程序员文章站 2022-03-28 22:39:27
jsoncpp的使用项目需要c++下使用json,我选择了jsoncpp,官网是:https://github.com/open-source-parsers/jsoncpp。解压后使用python编...

jsoncpp的使用

项目需要c++下使用json,我选择了jsoncpp,官网是:https://github.com/open-source-parsers/jsoncpp
解压后使用python编译出两个h文件和一个cpp文件:

(电脑需要安装python自己百度安装,这里就不说了)

安装python后,打开windows下cmd窗口,进入到jsoncpp文件夹  如图:

C++ qt 使用jsoncpp json 读写操作

执行命令:python amalgamate.py 就会生成dist文件夹 里面有 json.h json-forwards.h jsoncpp.cpp三个文件:如下

C++ qt 使用jsoncpp json 读写操作

将三个文件加入到工程即可使用,我是要qt进行测试使用:

C++ qt 使用jsoncpp json 读写操作

main.cpp如下

#include <iostream>
#include <fstream>
#include "dist/json/json.h"
using namespace std;
 
int main(int argc, char *argv[])
{
    // write
    json::value people1;
    people1["name"] = "dione";
    people1["sex"] = "男";
    people1["age"] = 24;
    people1["note"] = "jsoncpp write test!";
 
    json::value people2;
    people2["name"] = "hulis";
    people2["sex"] = "女";
    people2["age"] = 22;
    people2["note"] = "jsoncpp write test!";
 
    json::value peoples;
    peoples.append(people1);
    peoples.append(people2);
 
    json::value writevalue;
    writevalue["classname"] = "三年一班";
    writevalue["peoples"] = peoples;
 
 
    json::fastwriter fwriter;
    std::string strf = fwriter.write(writevalue);
    std::ofstream ofsf("example_fast_writer.json");
    ofsf << strf;
    ofsf.close();
 
    json::styledwriter swriter;
    std::string strs = swriter.write(writevalue);
    std::ofstream ofss("example_styled_writer.json");
    ofss << strs;
    ofss.close();
 
    // read
    string strvalue = "{\"key1\":\"111\",\"array\":[{\"key2\":\"222\"},{\"key2\":\"333\"},{\"key2\":\"444\"}]}";
    json::reader reader;
    json::value root;
    if (reader.parse(strvalue, root))
    {
        std::string out = root["key1"].asstring();
        qdebug()<<qstring::fromstdstring(out);
        json::value arrayobj = root["array"];
        for (int i=0; i<arrayobj.size(); i++)
        {
            out = arrayobj[i]["key2"].asstring();
            qdebug()<<qstring::fromstdstring(out);
        }
    }
 
    std::ifstream ifs("example_fast_writer.json");
    if (reader.parse(ifs, root))
    {
        std::string out = root["classname"].asstring();
        qdebug()<<qstring::fromstdstring(out);
        json::value peoples = root["peoples"];
        for (int i=0; i<peoples.size(); i++)
        {
            qdebug()<<qstring::fromstdstring(peoples[i]["name"].asstring());
            qdebug()<<qstring::fromstdstring(peoples[i]["sex"].asstring());
            qdebug()<<qstring::fromstdstring(peoples[i]["age"].asstring());
            qdebug()<<qstring::fromstdstring(peoples[i]["note"].asstring());
        }
    }
 
    return 0;
}

会生成两个json文件,一个是没有格式写入一个是有格式写入,如下:

C++ qt 使用jsoncpp json 读写操作

demo工程下载地址:

到此这篇关于c++ qt 使用jsoncpp json 读写的文章就介绍到这了,更多相关c++ qt 使用jsoncpp json内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!