JSON은 읽고 쓰기 쉽고 기계가 쉽게 구문 분석하고 생성할 수 있는 경량 데이터 교환 형식입니다. JSON 형식을 사용하면 다양한 시스템 간에 데이터를 쉽게 전송할 수 있습니다. C++에는 JSON 처리를 위한 오픈 소스 JSON 라이브러리가 많이 있습니다. 이 기사에서는 C++에서 일반적으로 사용되는 JSON 처리 방법 및 구현을 소개합니다.
C++의 JSON 처리 방법
RapidJSON은 DOM, SAX 및 메모리 풀 스타일 API를 제공하는 빠른 C++ JSON 파서/생성기입니다. 주요 기능은 다음과 같습니다:
RapidJSON에서는 DOM과 SAX를 통해 JSON 객체를 파싱할 수 있고, Value 클래스를 통해 DOM 메서드를 구현할 수 있습니다. 다음은 RapidJSON을 사용하여 JSON을 생성하고 구문 분석하는 샘플 코드입니다.
#include "rapidjson/document.h" #include "rapidjson/writer.h" #include "rapidjson/stringbuffer.h" #include <iostream> using namespace rapidjson; using namespace std; int main() { // 生成JSON StringBuffer s; Writer<StringBuffer> writer(s); writer.StartObject(); writer.Key("name"); writer.String("Tom"); writer.Key("age"); writer.Int(20); writer.EndObject(); // 解析JSON Document d; d.Parse(s.GetString()); cout << "name: " << d["name"].GetString() << endl; cout << "age: " << d["age"].GetInt() << endl; return 0; }
Boost.PropertyTree는 다양한 속성 형식을 처리할 수 있는 간단하고 사용하기 쉬운 속성 처리 라이브러리입니다. 그 중 JSON 구문 분석 및 생성도 지원합니다. Boost.PropertyTree는 RapidJSON보다 약간 느리지만 다음과 같은 몇 가지 기능도 있습니다.
#include <iostream> #include <boost/property_tree/ptree.hpp> #include <boost/property_tree/json_parser.hpp> using namespace std; using boost::property_tree::ptree; using boost::property_tree::read_json; using boost::property_tree::write_json; int main() { // 生成JSON ptree pt; pt.put("name", "Tom"); pt.put("age", 20); // 解析JSON string json_str; write_json(cout, pt); cout << endl; read_json("test.json", pt); cout << "name: " << pt.get<string>("name") << endl; cout << "age: " << pt.get<int>("age") << endl; return 0; }
#include <iostream> #include <json/json.h> using namespace std; using namespace Json; int main() { // 生成JSON Value root; root["name"] = "Tom"; root["age"] = 20; string json_str = root.toStyledString(); cout << json_str << endl; // 解析JSON Reader reader; Value value; reader.parse("{"name":"Tom","age":20}", value, false); cout << "name: " << value["name"].asString() << endl; cout << "age: " << value["age"].asInt() << endl; return 0; }
#include <iostream> #include <nlohmann/json.hpp> using namespace std; using json = nlohmann::json; int main() { // 生成JSON json j; j["name"] = "Tom"; j["age"] = 20; string json_str = j.dump(); cout << json_str << endl; // 解析JSON json j2 = json::parse("{"name":"Tom","age":20}"); cout << "name: " << j2["name"] << endl; cout << "age: " << j2["age"] << endl; return 0; }C++의 JSON 처리 구현위에서는 C++에서 일반적으로 사용되는 네 가지 JSON 처리 라이브러리를 소개합니다. .
RapidJSON 구현
// 生成JSON Value root(kObjectType); Value person(kObjectType); person.AddMember("name", "Tom", allocator); person.AddMember("age", 20, allocator); root.AddMember("person", person, allocator); StringBuffer buffer; Writer<StringBuffer> writer(buffer); root.Accept(writer); cout << buffer.GetString() << endl;JSON 분석:
// 解析JSON Document d; d.Parse("{"person":{"name":"Tom","age":20}}"); const Value& person = d["person"]; const string name = person["name"].GetString(); const int age = person["age"].GetInt();
Boost.PropertyTree 구현
// 生成JSON ptree root; ptree person; person.put("name", "Tom"); person.put("age", 20); root.add_child("person", person); stringstream stream; write_json(stream, root); cout << stream.str() << endl;JSON 분석:
// 解析JSON ptree root; read_json("test.json", root); const string name = root.get<string>("person.name"); const int age = root.get<int>("person.age");
JsonCpp 구현
// 生成JSON Value root; Value person; person["name"] = "Tom"; person["age"] = 20; root["person"] = person; cout << root.toStyledString() << endl;JSON 분석:
// 解析JSON Reader reader; Value value; string json_str = "{"person":{"name":"Tom","age":20}}"; reader.parse(json_str, value); const string name = value["person"]["name"].asString(); const int age = value["person"]["age"].asInt();
Nlohmann.Json 구현
// 生成JSON json j; j["person"]["name"] = "Tom"; j["person"]["age"] = 20; cout << j.dump() << endl;JSON 구문 분석:
// 解析JSON json j2 = json::parse("{"person":{"name":"Tom","age":20}}"); const string name = j2["person"]["name"]; const int age = j2["person"]["age"];Summary이 문서에서는 C++에서 일반적으로 사용되는 네 가지 JSON 처리 라이브러리인 RapidJSON, Boost.PropertyTree, JsonCpp 및 Nlohmann.Json과 해당 라이브러리의 일부 특성 및 구현을 소개합니다. 방법. 이러한 오픈 소스 라이브러리를 사용하면 JSON 캡슐화 구문 분석 및 생성을 쉽게 수행할 수 있습니다. 실제 사용에서 개발자는 최상의 결과를 얻기 위해 프로젝트 요구 사항에 가장 적합한 JSON 라이브러리를 선택해야 합니다.
위 내용은 JSON 처리 방법 및 C++ 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!