[jsoncpp]JSON序列化与反序列化
JSONCpp是一个C++库,用于解析和生成JSON数据。在本文中,我们将介绍JSONCpp的基本用法,包括如何解析JSON数据、如何访问JSON对象和数组,以及如何生成JSON数据。
1. 下载和编译JSONCpp
首先,确保您已经安装了JSONCpp库:
git clone --depth 1 https://ghproxy.cn/https://github.com/open-source-parsers/jsoncpp.git
cd jsoncpp/
mkdir build
cd build/
cmake ..
make
2. 解析JSON数据
要解析JSON数据,您需要创建一个Json::Value
对象来存储解析后的JSON数据。然后,使用Json::CharReaderBuilder
和Json::parseFromStream
函数从字符串中解析JSON数据。以下是一个示例:
#include <iostream>
#include <sstream>
#include <json/json.h>
int main() {
Json::Value root;
Json::CharReaderBuilder builder;
std::string errors;
// 使用非const字符串
std::string json_data = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";
std::istringstream json_stream(json_data);
bool parsingSuccessful = Json::parseFromStream(builder, json_stream, &root, &errors);
if (parsingSuccessful) {
std::cout << "Name: " << root["name"].asString() << std::endl;
std::cout << "Age: " << root["age"].asInt() << std::endl;
std::cout << "City: " << root["city"].asString() << std::endl;
} else {
std::cout << "Failed to parse JSON: " << errors << std::endl;
}
return 0;
}
3. 访问JSON对象和数组
解析成功后,您可以通过Json::Value
对象访问JSON数据。以下是一个示例,演示如何访问JSON对象和数组:
#include <iostream>
#include <sstream>
#include <json/json.h>
int main() {
Json::Value root;
Json::CharReaderBuilder builder;
std::string errors;
const std::string json_data = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\", \"hobbies\":[\"reading\", \"traveling\"]}";
std::istringstream json_stream(json_data);
bool parsingSuccessful = Json::parseFromStream(builder, json_stream, &root, &errors);
if (parsingSuccessful) {
const Json::Value& hobbies = root["hobbies"];
for (unsigned int i = 0u; i < hobbies.size(); ++i) {
std::cout << "Hobby: " << hobbies[i].asString() << std::endl;
}
} else {
std::cout << "Failed to parse JSON: " << errors << std::endl;
}
return 0;
}
4. 生成JSON数据
要生成JSON数据,您需要创建一个Json::Value
对象,然后使用其成员函数添加数据。以下是一个示例,演示如何生成JSON数据:
#include <iostream>
#include <sstream>
#include <jsoncpp/json/json.h>
int main() {
Json::Value root;
root["name"] = "John";
root["age"] = 30;
root["city"] = "New York";
Json::Value hobbies;
hobbies.append("reading");
hobbies.append("traveling");
root["hobbies"] = hobbies;
std::cout << "Generated JSON: " << root.toStyledString() << std::endl;
return 0;
}
编译程序
g++ --std=c++11 -o gen gen.cpp -I../include -L./lib -ljsoncpp
执行程序得到:
Generated JSON: {
"age" : 30,
"city" : "New York",
"hobbies" :
[
"reading",
"traveling"
],
"name" : "John"
}
在这个示例中,我们创建了一个Json::Value
对象,然后使用其成员函数添加JSON数据。最后,我们使用toStyledString()
函数将生成的JSON数据转换为字符串并输出。
总结
JSONCpp是一个功能强大的C++库,用于解析和生成JSON数据。通过本文,我们介绍了JSONCpp的基本用法,包括如何解析JSON数据、如何访问JSON对象和数组,以及如何生成JSON数据。您可以根据需要查阅JSONCpp的官方文档以获取更多信息。