Top "Rapidjson" questions

A fast JSON parser/generator for C++ with both SAX/DOM style API

Retrieving a nested object inside a JSON string using rapidjson

I need to retrieve a nested object inside a JSON string and I'm trying to do it using rapidjson. All …

c++ json rapidjson
How to serialize RapidJSON document to a string?

How to serialize RapidJSON document to a string? In all the examples the serializing text is redirected to the standard …

c++ string document rapidjson
iterate and retrieve nested object in JSON using rapidjson

I am parsing a JSON structure which is similar as follows { "item1" : "value1" "item2" : "value2" // ... "itemn" : { "outernestedItem1" : { "innerNestedItem1" : "valuen1" "innerNestedItem2" : "…

c++ json rapidjson
rapidjson: working code for reading document from file?

I need a working c++ code for reading document from file using rapidjson: https://code.google.com/p/rapidjson/ In …

c++ templates rapidjson
get array data from json file using rapidjson

I'm new in rapidjson. I have test.json which contains {"points": [1,2,3,4]} and I use following code to get data of …

c++ cocos2d-x-2.x rapidjson
Perform a copy of Document object of rapidjson

I'm making a class and I want to return my class inside a method. My class has a rapidjson::Document …

c++ visual-c++ visual-studio-2012 rapidjson
Write in file using Rapidjson

How can i write some data into file using rapidjson document : Here is what i need to write : "Big Node ": [ { "…

c++ rapidjson
How to parse with rapidjson from std::string?

How to parse with rapidjson from std::string ? I am trying like (json string is valid, I checked on jsonlint.…

c++ rapidjson
How can I add members to a rapidjson document using integers as the key/name?

I'm using a for loop and want to use the iterator, i, as the key/name when I add a …

c++ json rapidjson
Is there way to use rapidjson with std::string efficiently?

I'm trying to work with rapidjson. I want to generate string and add it to some rapidjson::Value which is …

c++ string rapidjson