阅读量:0
要在C++中处理JSON格式,您可以使用第三方库,例如nlohmann/json
- 首先,从GitHub上克隆nlohmann/json库:
git clone https://github.com/nlohmann/json.git
将
json.hpp
文件包含到您的项目中。在代码中包含头文件:
#include "json.hpp" using json = nlohmann::json;
- 读取JSON字符串并解析为json对象:
std::string json_str = R"({"name": "John", "age": 30, "city": "New York"})"; json j = json::parse(json_str);
- 访问JSON对象中的值:
std::string name = j["name"]; int age = j["age"]; std::string city = j["city"];
- 修改JSON对象中的值:
j["age"] = 31;
- 将JSON对象转换回字符串:
std::string updated_json_str = j.dump();
- 创建一个新的JSON对象并添加键值对:
json new_j; new_j["name"] = "Jane"; new_j["age"] = 28; new_j["city"] = "San Francisco";
- 将新的JSON对象转换为字符串:
std::string new_json_str = new_j.dump();
这只是使用nlohmann/json库处理JSON格式的基本示例。您还可以使用该库处理更复杂的JSON结构,例如数组和嵌套对象。有关更多详细信息和示例,请参阅官方文档:https://github.com/nlohmann/json