使用 json::parse 函数将JSON格式的字符串解析为 nlohmann::json 对象。这个函数支持多种输入源,包括字符串、文件流等。
#include <iostream>
#include <nlohmann/json.hpp>
#include <fstream>
using json = nlohmann::json;
int main() {
// 解析 JSON 字符串
std::string json_str = R"({
"name": "Alice",
"age": 30,
"hobbies": ["reading", "coding", "traveling"]
})";
json j = json::parse(json_str);
// 输出 JSON
std::cout << j.dump(4) << std::endl;
// 从文件读取 JSON
std::ifstream file("data.json");
if (file.is_open()) {
json j_file = json::parse(file);
std::cout << j_file.dump(4) << std::endl;
file.close();
}
return 0;
}