C++에서 rapidjson 조립 을 계속 간소화 하 는 방법
가장 쉬 운 것 을 보 세 요.
#include <iostream>
#include <stdio.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<sstream>
// rapidjson
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/memorystream.h"
using namespace std;
using rapidjson::Document;
using rapidjson::StringBuffer;
using rapidjson::Writer;
using namespace rapidjson;
void test()
{
Document document;
document.SetObject();
Document::AllocatorType& allocator = document.GetAllocator();
Value object(rapidjson::kObjectType);
document.AddMember("age", 29, allocator);
document.AddMember("name", "taoge", allocator);
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
document.Accept(writer);
string str = buffer.GetString();
cout << str << endl;
}
int main(int argc, char *argv[])
{
test();
return 0;
}
결과:{"age":29,"name":"taoge"}
배열 다시 보기:
#include <iostream>
#include <stdio.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<sstream>
// rapidjson
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/memorystream.h"
using namespace std;
using rapidjson::Document;
using rapidjson::StringBuffer;
using rapidjson::Writer;
using namespace rapidjson;
void test()
{
Document document;
document.SetObject();
Document::AllocatorType& allocator = document.GetAllocator();
Value array(rapidjson::kArrayType);
Value object(rapidjson::kObjectType);
object.AddMember("age", 30, allocator);
object.AddMember("name", "taoge", allocator);
array.PushBack(object, allocator);
document.AddMember("json", array, allocator);
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
document.Accept(writer);
string str = buffer.GetString();
cout << str << endl;
}
int main(int argc, char *argv[])
{
test();
return 0;
}
결과:{"json":[{"age":30,"name":"taoge"}]}
하나 더 보기:
#include <iostream>
#include <stdio.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<sstream>
// rapidjson
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/memorystream.h"
using namespace std;
using rapidjson::Document;
using rapidjson::StringBuffer;
using rapidjson::Writer;
using namespace rapidjson;
void test()
{
Document document;
document.SetObject();
Document::AllocatorType& allocator = document.GetAllocator();
Value array(rapidjson::kArrayType);
Value object(rapidjson::kObjectType);
object.AddMember("age", 30, allocator);
object.AddMember("name", "taoge", allocator);
array.PushBack(object, allocator);
document.AddMember("oh1", array, allocator);
document.AddMember("oh2", "hehe", allocator);
StringBuffer buffer;
Writer<StringBuffer> writer(buffer);
document.Accept(writer);
string str = buffer.GetString();
cout << str << endl;
}
int main(int argc, char *argv[])
{
test();
return 0;
}
결과:{"oh1":[{"age":30,"name":"taoge"}],"oh2":"hehe"}
총결산
이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
hdu 1717 소수 화 점수 2 (수학)소수 화 점수 2 레이 는 수학 시간 에 선생님 의 말씀 을 듣 고 모든 소수 가 점수 로 표시 되 는 형식 이 라 고 말 했다. 그 는 녹 기 시 작 했 고 곧 완성 되 었 다. 그러나 그 는 또 하나의 문 제 를...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.