|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Unicode C++) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects. 
 #include <CkJsonObjectW.h> void ChilkatSample(void) { // We want to build the following JSON: // { // "accountEnabled": true, // "assignedLicenses": [ // { // "disabledPlans": [ "bea13e0c-3828-4daa-a392-28af7ff61a0f" ], // "skuId": "skuId-value" // } // ], // "assignedPlans": [ // { // "assignedDateTime": "datetime-value", // "capabilityStatus": "capabilityStatus-value", // "service": "service-value", // "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f" // } // ], // "businessPhones": [ // "businessPhones-value" // ], // "city": "city-value", // "companyName": "companyName-value" // } CkJsonObjectW json; json.UpdateBool(L"accountEnabled",true); json.put_I(0); json.UpdateString(L"assignedLicenses[i].disabledPlans[0]",L"bea13e0c-3828-4daa-a392-28af7ff61a0f"); json.UpdateString(L"assignedLicenses[i].skuId",L"skuId-value"); json.UpdateString(L"assignedPlans[i].assignedDateTime",L"datetime-value"); json.UpdateString(L"assignedPlans[i].capabilityStatus",L"capabilityStatus-value"); json.UpdateString(L"assignedPlans[i].service",L"service-value"); json.UpdateString(L"assignedPlans[i].servicePlanId",L"bea13e0c-3828-4daa-a392-28af7ff61a0f"); json.UpdateString(L"businessPhones[i]",L"businessPhones-value"); json.UpdateString(L"city",L"city-value"); json.UpdateString(L"companyName",L"companyName-value"); json.put_EmitCompact(false); wprintf(L"%s\n",json.emit()); // Output: // { // "accountEnabled": true, // "assignedLicenses": [ // { // "disabledPlans": [ // "bea13e0c-3828-4daa-a392-28af7ff61a0f" // ], // "skuId": "skuId-value" // } // ], // "assignedPlans": [ // { // "assignedDateTime": "datetime-value", // "capabilityStatus": "capabilityStatus-value", // "service": "service-value", // "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f" // } // ], // "businessPhones": [ // "businessPhones-value" // ], // "city": "city-value", // "companyName": "companyName-value" // } } | ||||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.