Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects.
#include <CkJsonObject.h> void ChilkatSample(void) { CkString strOut; // 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" // } CkJsonObject json; json.UpdateBool("accountEnabled",true); json.put_I(0); json.UpdateString("assignedLicenses[i].disabledPlans[0]","bea13e0c-3828-4daa-a392-28af7ff61a0f"); json.UpdateString("assignedLicenses[i].skuId","skuId-value"); json.UpdateString("assignedPlans[i].assignedDateTime","datetime-value"); json.UpdateString("assignedPlans[i].capabilityStatus","capabilityStatus-value"); json.UpdateString("assignedPlans[i].service","service-value"); json.UpdateString("assignedPlans[i].servicePlanId","bea13e0c-3828-4daa-a392-28af7ff61a0f"); json.UpdateString("businessPhones[i]","businessPhones-value"); json.UpdateString("city","city-value"); json.UpdateString("companyName","companyName-value"); json.put_EmitCompact(false); strOut.append(json.emit()); strOut.append("\r\n"); // 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" // } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.