使用rapidjson Json解析

前言

随便写写,自己经常用到;官方教程比我详细.

安装

sudo apt-get install rapidjson-dev

这个库完全是通过头文件实现的,直接拷贝到头文件的文件夹 also can do it.

内存流

输入

StringStream

#include <iostream>
#include <rapidjson/document.h>

using namespace std;

int main(int, char **)
{
    const char *json = "{\"hello\" : \"ligoudan\"}";
    rapidjson::StringStream input(json);
    rapidjson::Document document;
    document.ParseStream(input);

    cout << document["hello"].GetString() << endl;

    return 0;
}

输出

StringBuffer

#include <iostream>
#include <rapidjson/document.h>
#include <rapidjson/stringbuffer.h>
#include <rapidjson/writer.h>

using namespace std;

int main(int, char **)
{
    rapidjson::Document document;
    rapidjson::Document::AllocatorType &allocator = document.GetAllocator();
    document.SetObject();

    rapidjson::Value name;
    name.SetString("misaka");

    document.AddMember("name", name, allocator);

    // output
    rapidjson::StringBuffer SB;
    rapidjson::Writer<rapidjson::StringBuffer> writer(SB);
    document.Accept(writer);

    cout << SB.GetString() << endl;

    return 0;
}

文件流

输入

文件

{
    "hello": "world",
    "t": true,
    "f": false,
    "n": null,
    "i": 123,
    "pi": 3.1416,
    "a": [1, 2, 3, 4]
}

呆马

#include <cstdio>
#include <iostream>
#include <rapidjson/document.h>
#include <rapidjson/filereadstream.h>

using namespace std;

int main(int, char **)
{
    FILE *fp = fopen("input.json", "r"); // stupid windows need rb
    char buf[0XFFFF];

    //FileReadStream(FILE *fp, char *buffer, std::size_t bufferSize)
    rapidjson::FileReadStream input(fp, buf, sizeof(buf));
    rapidjson::Document document;
    document.ParseStream(input);
    fclose(fp);

    cout << boolalpha;
    cout << document["hello"].GetString() << endl;
    cout << document["t"].GetBool() << endl;
    cout << (document["n"].IsNull() ? "null" : "He He") << endl;
    cout << document["pi"].GetDouble() << endl;

    return 0;
}

输出

格式有点小问题

#include <iostream>
#include <rapidjson/document.h>
#include <rapidjson/filewritestream.h>
#include <rapidjson/writer.h>


using namespace std;

int main(int, char **)
{
    rapidjson::Document document;
    rapidjson::Document::AllocatorType &allocator = document.GetAllocator();
    document.SetObject();

    rapidjson::Value hello;
    hello.SetString("world");

    rapidjson::Value t;
    t.SetBool(true);

    rapidjson::Value f(false);

    rapidjson::Value n;
    n.SetNull();

    rapidjson::Value i(123);
    rapidjson::Value pi(3.1416);

    rapidjson::Value a;
    a.SetArray();
    for (int i = 0; i < 4; ++i) {
        a.PushBack(i+1, allocator);
    }

    document.AddMember("hello", hello, allocator);
    document.AddMember("t", t, allocator);
    document.AddMember("f", f, allocator);
    document.AddMember("n", n, allocator);
    document.AddMember("i", i, allocator);
    document.AddMember("pi", pi, allocator);
    document.AddMember("a", a, allocator);

    //output
    FILE *fp = fopen("output.json", "w"); // stupid win need wb

    char buf[0XFFFF];
    // FileWriteStream(FILE *fp, char *buffer, std::size_t bufferSize)
    rapidjson::FileWriteStream output(fp, buf, sizeof (buf));
    rapidjson::Writer<rapidjson::FileWriteStream> writer(output);
    document.Accept(writer);

    fclose(fp);

    return 0;
}

常用操作(抄一遍教程)

#include <iostream>
#include <rapidjson/document.h>
#include <rapidjson/stringbuffer.h>
#include <rapidjson/writer.h>

// #define NDEBUG
#include <cassert>

void for_each_json(const rapidjson::Document &document);

using namespace std;

int main(int, char **)
{
    cout << boolalpha;

    rapidjson::Document document;
    rapidjson::Document::AllocatorType &allocator = document.GetAllocator();
    document.SetObject();

    assert(document.IsObject());

    // 查找有没有name
    cout << "name=" <<
        (document.HasMember("name") ? document["name"].GetString() : "没有")
         << endl;

    // fill
    rapidjson::Value hello("world");
    rapidjson::Value t(true);
    rapidjson::Value f(false);
    rapidjson::Value n;
    n.SetNull();
    rapidjson::Value i(123);
    rapidjson::Value pi(3.1416);
    // 暂时先不fill array 因为不会...
    rapidjson::Value a;
    a.SetArray();

    // add member
    // NOTE rapidjson为了性能,AddMember执行之后会让Value变成null
    document.AddMember("hello", hello, allocator);
    document.AddMember("t", t, allocator);
    document.AddMember("f", f, allocator);
    document.AddMember("i", i, allocator);
    document.AddMember("n", n, allocator);
    document.AddMember("pi", pi, allocator);
    document.AddMember("a", a, allocator);

    // try
    assert(document["hello"].IsString());
    assert(document["t"].IsBool());
    assert(document["n"].IsNull());
    assert(document["i"].IsInt());
    assert(document["i"].IsNumber());
    assert(document["pi"].IsDouble());
    assert(document["a"].IsArray());

    // get
    cout << document["hello"].GetString() << endl;
    cout << document["t"].GetBool() << endl;
    cout << document["f"].GetBool() << endl;
    cout << (document["n"].IsNull() ? "null" : "SB") << endl;
    cout << document["i"].GetInt() << endl;
    cout << document["pi"].GetDouble() << endl;

    cout << "-*-*-*-*-*-华丽的分割线-*-*-*-*-*-" << endl;

    // fill array
    rapidjson::Value &array = document["a"]; // 因为a已经变成废铁了
    /**
     * 关于Array的基本操作
     * Clear();
     * Value & PushBack(Value &, Allocator &);
     * template <typename T> GenericValue & PushBack(T, Allocator &);
     * Value & PopBack();
     * ValueIterator Erase(ConstValueIterator pos);
     * ValueIterator Erase(ConstValueIterator first, ConstValueIterator last);
     */
    for (int i = 0; i < 4; ++i) {
        array.PushBack(i, allocator);
    }

    // for each array
    /*
    关于Array
    索引类型 : SizeType
    数组size : a.Size();
    */
    for(rapidjson::SizeType index = 0; index < array.Size(); ++index) {
        cout << "a[" << index << "] = " << array[index].GetInt() << endl;
    }

    // by iterator
    for (rapidjson::Value::ConstValueIterator it = array.Begin();
         it != array.End(); ++it) {
        cout << it->GetInt() << ' ';
    } cout << endl;

    // for each json
    for_each_json(document);

    rapidjson::StringBuffer SB;
    rapidjson::Writer<rapidjson::StringBuffer> writer(SB);
    document.Accept(writer);

    cout << SB.GetString() << endl;



    return 0;
}

void for_each_json(const rapidjson::Document &document)
{
    rapidjson::Value::ConstMemberIterator it;
    for (it = document.MemberBegin();
         it != document.MemberEnd(); ++it) {
        cout << it->name.GetString() << ": ";

        if (it->value.IsNull()) {
            cout << "null";
        }
        else if (it->value.IsString()) {
            cout << it->value.GetString();
            cout << "\tStringLength = " << it->value.GetStringLength();
        }
        else if (it->value.IsBool()) {
            cout << it->value.GetBool();
        }
        else if (it->value.IsInt()) {
            cout << it->value.GetInt();
        }
        else if (it->value.IsDouble()) {
            cout << it->value.GetDouble();
        }
        else if (it->value.IsArray()) { // 默认Int数组
            rapidjson::Value::ConstValueIterator val_it
                = it->value.Begin();
            for (; val_it != it->value.End(); ++val_it) {
                cout << val_it->GetInt() << ' ';
            }
        }
        else if (it->value.IsObject()) {
            ;
        }
        else {
            ;
        }

        cout << endl;
    }
}

Python json模块(很抱(qian)歉(zou),我是宇宙术)

使用Python内置的json模块

test.json
{
    "hello": "world",
    "t": true,
    "f": false,
    "n": null,
    "i": 123,
    "pi": 3.1416,
    "a": [1, 2, 3, 4]
}
#!/usr/bin/python3

import json

if __name__ == '__main__':
    json_str = '''
    {
    "hello": "world",
    "t": true,
    "f": false,
    "n": null,
    "i": 123,
    "pi": 3.1416,
    "a": [1, 2, 3, 4]
    }
    '''

    # memory stream input
    data = json.loads(json_str)

    print(data)

    # memory stream output
    out_string = json.dumps(data, ensure_ascii=False, indent=2)
    print(out_string)

    # file stream input
    with open('test.json', 'r', encoding='utf-8') as input:
        data = json.load(input, encoding='utf-8')
        print(data)

    # file stream output
    with open('output.json', 'w', encoding='utf-8') as output:
        json.dump(data, output, ensure_ascii=False, indent=4)

    print('Done')

ujson版本(没什么变化)

#!/usr/bin/python3

import ujson
import json
"""
ujson

dump dumps

load loads

encode decode

"""

if __name__ == '__main__':
    json_str = '''
    {
        "name": "misaka",
        "age":14,
        "school": null
    }
    '''

    data = ujson.loads(json_str)
    print(data)

    with open('test.json', 'r', encoding='utf-8') as input:
        data = ujson.load(input)
        print(data)

    # ensure_ascii=False 输出的是utf-8
    result_str = ujson.dumps(data, indent=4, ensure_ascii=False)
    print(result_str)

    with open('output.json', 'w', encoding='utf-8') as output:
        ujson.dump(data, output, indent=4, ensure_ascii=False)

    print('Done')

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容

  • 一、Python简介和环境搭建以及pip的安装 4课时实验课主要内容 【Python简介】: Python 是一个...
    _小老虎_阅读 5,720评论 0 10
  • 一、基础知识:1、JVM、JRE和JDK的区别:JVM(Java Virtual Machine):java虚拟机...
    杀小贼阅读 2,365评论 0 4
  • 当我们重拾交谈、重新找回交谈的场所时,我们也在重新思考长线思维意识的重要性。人生不是一个寻求快速解决办法的难题。人...
    忎染阅读 103评论 0 0
  • 最近这几天语文老师每天都会有个测试,已经考完3次,也没拿个100分呢!今天老师说批完听写的说心哇凉哇凉的,我都不...
    晨阳欧阳麻麻阅读 286评论 0 5
  • 01 说实在的,我真不知道该用什么动词来描述这件事——就是用食用碱和醋,来催熟柿子,在老家我们就管它叫“问(同音而...
    西瓜甜甜啦阅读 910评论 15 19