IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> rapidjson读取JSON文件(包括库的链接) -> 正文阅读

[开发工具]rapidjson读取JSON文件(包括库的链接)


.

官网:http://rapidjson.org/zh-cn/
开发环境:VS code 2019

一、环境配置

1、下载rapidjson

下载网址:https://github.com/Tencent/rapidjson/
下载完成之后,打开目录,可以看到以下文件,其中include是主要文件,也是最重要的文件
在这里插入图片描述
可以将文件移动到工程项目里面

2、添加库的链接

打开调试属性
在这里插入图片描述
选择VC++目录->包含目录
在这里插入图片描述
将上面的include目录包含进来,即可使用了,$(SolutionDir)表示当前的工程目录
$(SolutionDir)thrid\rapidjson\include
在这里插入图片描述

二、rapidjson例程

读取JSON文件,获取对应元素


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

using namespace rapidjson;
using namespace std;

string readfile(const char* filename) {
    FILE* fp = fopen(filename, "rb");
    if (!fp) {
        printf("open failed! file: %s", filename);
        return "";
    }

    /*
     
    FILE* fp = fopen(filename, "rb");
    if (!fp) {
        printf("open failed! file: %s", filename);
        return "";
    }
    char* buf = new char[1024 * 16];
    int n = fread(buf, 1, 1024 * 16, fp);
    fclose(fp);

    string result;
    if (n >= 0) {
        result.append(buf, 0, n);
    }
    delete[]buf;
    */

    char buf[1024 * 16]; //新建缓存区
    string result;

    /*循环读取文件,直到文件读取完成*/
    while (int n = fgets(buf, 1024 * 16, fp) != NULL)
    {
        //int len = strlen(buf);
        //buf1[len - 1] = '\0';  /*去掉换行符*/
        //printf("%s %d \n", buf, len - 1);
        result.append(buf);
        //cout << buf << endl;
    }
    fclose(fp);
    //cout << result << endl;

    return result;
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
int parseJSON(const char* jsonstr) {
    Document d;
    if (d.Parse(jsonstr).HasParseError()) {
        printf("parse error!\n");
        return -1;
    }
    if (!d.IsObject()) {
        printf("should be an object!\n");
        return -1;
    }
    if (d.HasMember("errorCode")) {
        Value& m = d["errorCode"];
        int v = m.GetInt();
        printf("errorCode: %d\n", v);
    }
    printf("show numbers: \n");
    if (d.HasMember("numbers")) {
        Value& m = d["numbers"];
        if (m.IsArray()) {
            for (int i = 0; i < m.Size(); i++) {
                Value& e = m[i];
                int n = e.GetInt();
                printf("%d,", n);
            }
        }
    }
    return 0;
}

int parseJSON2(const char* jsonstr) {
    Document d;
    if (d.Parse(jsonstr).HasParseError()) {
        throw string("parse error!\n");
    }
    if (!d.IsObject()) {
        throw string("should be an object!\n");
    }

    /*判断是否存在Joints*/
    if (!d.HasMember("Joints")) {
        throw string("'Joints' no found!");
    }

    


    /*查看Joints的个数和数据类型*/
    Value& j = d["Joints"];
    cout << typeid(j).name() << endl;
    cout << j.Size() << endl;


    /*查看Joints下第一个Joints的ID*/
    Value& m = d["Joints"][0];
    m.HasMember("ID");

    if (m.IsObject()){
        cout << "ID" << endl;
        if (m["ID"].IsInt()) {
            int ID = m["ID"].GetInt();
            cout << ID << endl;
        }
       

    }

    //string v = m.GetString();
    //printf("errorCode: %d\n", v);
    //printf("show numbers:\n");
    /*
    if (d.HasMember("numbers")) {
        Value& m = d["numbers"];
        if (m.IsArray()) {
            for (int i = 0; i < m.Size(); i++) {
                Value& e = m[i];
                int n = e.GetInt();
                printf("%d", n);
            }
        }
    }
    */
    return 0;
}

/*
 //path="/Users/macname/Desktop/example.json"

 {
 "errorCode":0,
 "reason":"OK",
 "result":{"userId":10086,"name":"中国移动"},
 "numbers":[110,120,119,911]
 }

 */
int main() {

    string jsonstr = readfile("C:/OpenGL/JSONloader/JSONloader/JSONloader/venue2654_v4.json");
    //string jsonstr = readfile("C:/OpenGL/JSONloader/JSONloader/JSONloader/test.txt");
    //parseJSON(jsonstr.c_str());

    try {
        parseJSON2(jsonstr.c_str());
    }
    catch (string e) {
        printf("error: %s \n", e.c_str());
    }
    getchar();
    
    return 0;
}

简洁版

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

using namespace rapidjson;
using namespace std;

string readfile(const char* filename) {
    FILE* fp = fopen(filename, "rb");
    if (!fp) {
        printf("open failed! file: %s", filename);
        return "";
    }
    char buf[1024 * 16]; //新建缓存区
    string result;
   /*循环读取文件,直到文件读取完成*/
    while (int n = fgets(buf, 1024 * 16, fp) != NULL)
    {
            result.append(buf);
        //cout << buf << endl;
    }
    fclose(fp);
    return result;
}

int parseJSON2(const char* jsonstr) {
    Document d;
    if (d.Parse(jsonstr).HasParseError()) {
        throw string("parse error!\n");
    }
    if (!d.IsObject()) {
        throw string("should be an object!\n");
    }

    /*判断是否存在Joints*/
    if (!d.HasMember("Joints")) {
        throw string("'Joints' no found!");
    }

    /*查看Joints的个数和数据类型*/
    Value& j = d["Joints"];
    cout << typeid(j).name() << endl;
    cout << j.Size() << endl;

    /*查看Joints下第一个Joints的ID*/
    Value& m = d["Joints"][0];
    m.HasMember("ID");

    if (m.IsObject()){
        cout << "ID" << endl;
        if (m["ID"].IsInt()) {
            int ID = m["ID"].GetInt();
            cout << ID << endl;
        }
    }
        return 0;
}

int main() {

    string jsonstr = readfile("C:/OpenGL/JSONloader/JSONloader/JSONloader/venue2654_v4.json");
        try {
        parseJSON2(jsonstr.c_str());
    }
    catch (string e) {
        printf("error: %s \n", e.c_str());
    }
        return 0;
}
  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-09-22 14:53:00  更:2021-09-22 14:55:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 2:37:28-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码