Sample code for 30+ languages & platforms
C++

Iterate JSON where Member Names are Data Values

See more JSON Examples

Demonstrates how to parse JSON where member names are not keywords, but instead are data values.

Chilkat C++ Downloads

C++
#include <CkJsonObject.h>

void ChilkatSample(void)
    {
    bool success = false;

    CkJsonObject json;

    success = json.LoadFile("qa_data/json/valuesAsNames.json");

    // Imagine we have JSON such as the following:

    // {
    //   "1680": {
    //     "entity_id": "1680",
    //     "type_id": "simple",
    //     "sku": "123"
    //   },
    //   "1701": {
    //     "entity_id": "1701",
    //     "type_id": "simple",
    //     "sku": "456"
    //   }
    // }
    // 

    // This presents a parsing problem because the member names, such as "1680"
    // are not keywords.  Instead they are data values.  We don't know what they
    // may be in advance.  

    // To solve, we iterate over the members, get the name of each, ...
    int numMembers = json.get_Size();
    int i;
    for (i = 0; i <= numMembers - 1; i++) {

        const char *name = json.nameAt(i);

        std::cout << name << ":" << "\r\n";
        CkJsonObject *jRecord = json.ObjectAt(i);

        std::cout << "entity_id: " << jRecord->stringOf("entity_id") << "\r\n";
        std::cout << "type_id: " << jRecord->stringOf("type_id") << "\r\n";
        std::cout << "sku: " << jRecord->stringOf("sku") << "\r\n";

        delete jRecord;

    }
    }