How to read multiple json objects using jsoncpp

I have an example file "sample.json" that contains 3 json objects

{"A": "something1", "B": "something2", "C": "something3", "D": "something4"} {"A": "something5", "B": "something6", "C": "something7", "D": "something8"} {"A": "something9", "B": "something10", "C": "something11", "D": "something12"}

(there is no new line in this file)

I want to read all three json objects using jsoncpp.

I can read the first object, but not after it.

Here is the relevant part of my code

    Json::Value root;   // will contains the root value after parsing.
    Json::Reader reader;
    std::ifstream test("sample.json", std::ifstream::binary);
    bool parsingSuccessful = reader.parse(test, root, false);
    int N = 3;
    if (parsingSuccessful)
    {
         for (size_t i = 0; i < N; i++)
         {
                std::string A= root.get("A", "ASCII").asString();
                std::string B= root.get("B", "ASCII").asString();
                std::string C= root.get("C", "ASCII").asString();
                std::string D= root.get("D", "ASCII").asString();
               //print all of them
        }
    }
+4
2

, JSON . . www.json.org. , . :

[{"A":"something1","B":"something2","C":"something3","D":"something4"},
 {"A":"something5","B":"something6","C":"something7","D":"something8"}, 
 {"A":"something9","B":"something10","C":"something11","D":"something12"}]

:

for (size_t i = 0; i < root.size(); i++)
{
    std::string A = root[i].get("A", "ASCII").asString();
    // etc.
}
+6

, , ( ):

// Very simple jsoncpp test
#include <json/json.h>
#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main(int argc, char *argv[])
{
    Json::Value root;
    Json::Reader reader;
    ifstream test("sample.json", ifstream::binary);
    string cur_line;
    bool success;

    do {
        getline(test, cur_line);
        cout << "Parse line: " << cur_line;
        success = reader.parse(cur_line, root, false);
        cout << root << endl;
    } while (success);

    cout << "Done" << endl;
}
+1

All Articles