😏★,°:.☆( ̄▽ ̄)/$:.°★ 😏
这篇文章主要介绍nlohmann/json数据解析库配置使用。
无专精则不能成,无涉猎则不能通。——梁启超
欢迎来到我的博客,一起学习,共同进步。
喜欢的朋友可以关注一下,下次更新不迷路🥞
文章目录
- :smirk:1. 项目介绍
- :blush:2. 环境配置
- :satisfied:3. 使用说明
😏1. 项目介绍
官网:https://json.nlohmann.me/
项目Github地址:https://github.com/nlohmann/json
nlohmann/json
是一个流行的 C++ JSON 库,以其简洁易用、功能强大而闻名。它提供了 C++ 与 JSON 之间的无缝转换,支持大多数现代 C++ 特性,使得操作 JSON 数据非常方便。
1.支持 C++11 及更高版本。
2.提供了简单直观的 API。
3.支持序列化和反序列化 JSON 数据。
4.支持多种数据类型(数字、字符串、布尔、数组、对象等)。
5.支持 STL 容器与 JSON 的互操作。
😊2. 环境配置
这个json库可以只使用头文件
(header-only),头文件可以在仓库的release
中下载。
😆3. 使用说明
JSON 对象的创建和序列化示例:
#include "json.hpp"
#include <iostream>int main() {// 创建 JSON 对象nlohmann::json jsonObj;// 添加数据到 JSON 对象jsonObj["name"] = "John";jsonObj["age"] = 30;jsonObj["is_student"] = false;jsonObj["skills"] = {"C++", "Python", "JavaScript"};// 序列化 JSON 对象为字符串std::string serialized = jsonObj.dump();// 打印 JSON 字符串std::cout << "Serialized JSON: " << serialized << std::endl;return 0;
}
JSON 反序列化示例:
#include "json.hpp"
#include <iostream>
#include <string>int main() {// JSON 字符串std::string jsonString = R"({"name":"John","age":30,"is_student":false,"skills":["C++","Python","JavaScript"]})";// 解析 JSON 字符串nlohmann::json jsonObj = nlohmann::json::parse(jsonString);// 访问 JSON 数据std::string name = jsonObj["name"];int age = jsonObj["age"];bool is_student = jsonObj["is_student"];std::vector<std::string> skills = jsonObj["skills"];// 打印解析的数据std::cout << "Name: " << name << std::endl;std::cout << "Age: " << age << std::endl;std::cout << "Is Student: " << is_student << std::endl;std::cout << "Skills: ";for (const auto& skill : skills) {std::cout << skill << " ";}std::cout << std::endl;return 0;
}
JSON转换为 C++ 标准数据类型:
#include "json.hpp"
#include <iostream>
#include <vector>int main() {// 创建 JSON 对象nlohmann::json jsonObj = {{"pi", 3.141},{"happy", true},{"name", "Niels"},{"answer", {{"everything", 42}}},{"list", {1, 0, 2}},{"object", {{"currency", "USD"},{"value", 42.99}}}};// 转换为 C++ 标准数据类型double pi = jsonObj["pi"];bool happy = jsonObj["happy"];std::string name = jsonObj["name"];int answer = jsonObj["answer"]["everything"];std::vector<int> list = jsonObj["list"];// 打印结果std::cout << "pi: " << pi << std::endl;std::cout << "happy: " << happy << std::endl;std::cout << "name: " << name << std::endl;std::cout << "answer: " << answer << std::endl;std::cout << "list: ";for (int i : list) {std::cout << i << " ";}std::cout << std::endl;return 0;
}
C++ 标准数据类型转换为 JSON示例:
#include "json.hpp"
#include <iostream>
#include <map>int main() {// 创建 C++ 标准数据类型std::map<std::string, int> mapData = {{"key1", 1}, {"key2", 2}, {"key3", 3}};std::vector<int> vectorData = {10, 20, 30};// 转换为 JSONnlohmann::json jsonMap = mapData;nlohmann::json jsonVector = vectorData;// 打印结果std::cout << "jsonMap: " << jsonMap.dump() << std::endl;std::cout << "jsonVector: " << jsonVector.dump() << std::endl;return 0;
}
写入 JSON 文件示例:
#include "json.hpp"
#include <iostream>
#include <fstream>int main() {// 创建 JSON 对象nlohmann::json jsonObj = {{"name", "John"},{"age", 30},{"is_student", false},{"skills", {"C++", "Python", "JavaScript"}}};// 写入 JSON 文件std::ofstream outFile("data.json");outFile << jsonObj.dump(4); // 4 表示缩进级别outFile.close();std::cout << "JSON 文件已成功写入 data.json" << std::endl;return 0;
}
读取 JSON 文件示例:
#include "json.hpp"
#include <iostream>
#include <fstream>int main() {// 读取 JSON 文件std::ifstream inFile("data.json");nlohmann::json jsonObj;inFile >> jsonObj;inFile.close();// 访问 JSON 数据std::string name = jsonObj["name"];int age = jsonObj["age"];bool is_student = jsonObj["is_student"];std::vector<std::string> skills = jsonObj["skills"];// 打印结果std::cout << "Name: " << name << std::endl;std::cout << "Age: " << age << std::endl;std::cout << "Is Student: " << is_student << std::endl;std::cout << "Skills: ";for (const auto& skill : skills) {std::cout << skill << " ";}std::cout << std::endl;return 0;
}
以上。