Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) JSON: Miscellaneous OperationsDemonstrates a variety of JSON API methods. This example uses the following JSON document: { "alphabet": "abcdefghijklmnopqrstuvwxyz", "sampleData" : { "pi": 3.14, "apple": "juicy", "hungry": true, "withoutValue": null, "answer": 42 } }
#include <C_CkJsonObject.h> void ChilkatSample(void) { HCkJsonObject json; BOOL success; HCkJsonObject sampleData; json = CkJsonObject_Create(); CkJsonObject_putEmitCompact(json,FALSE); // Assume the file contains the data as shown above.. success = CkJsonObject_LoadFile(json,"qa_data/json/sample2.json"); if (success != TRUE) { printf("%s\n",CkJsonObject_lastErrorText(json)); CkJsonObject_Dispose(json); return; } // First navigate to the "sampleData" object: sampleData = CkJsonObject_ObjectOf(json,"sampleData"); // Demonstrate BoolAt and BoolOf printf("hungry: %d\n",CkJsonObject_BoolOf(sampleData,"hungry")); printf("hungry: %d\n",CkJsonObject_BoolAt(sampleData,2)); // StringOf returns the value as a string regardless of it's actual type: printf("pi: %s\n",CkJsonObject_stringOf(sampleData,"pi")); printf("answer: %s\n",CkJsonObject_stringOf(sampleData,"answer")); printf("withoutValue: %s\n",CkJsonObject_stringOf(sampleData,"withoutValue")); printf("hungry: %s\n",CkJsonObject_stringOf(sampleData,"hungry")); // Demonstrate IsNullOf / IsNullAt printf("withoutValue is null? %d\n",CkJsonObject_IsNullOf(sampleData,"withoutValue")); printf("withoutValue is null? %d\n",CkJsonObject_IsNullAt(sampleData,3)); printf("apple is null? %d\n",CkJsonObject_IsNullOf(sampleData,"apple")); printf("apple is null? %d\n",CkJsonObject_IsNullAt(sampleData,1)); // IntOf printf("answer: %d\n",CkJsonObject_IntOf(sampleData,"answer")); // SetNullAt, SetNullOf // Set "pi" to null success = CkJsonObject_SetNullAt(sampleData,0); // Set "answer" to null success = CkJsonObject_SetNullOf(sampleData,"answer"); // Show the changes: printf("%s\n",CkJsonObject_emit(json)); // Restore pi and apple: success = CkJsonObject_SetNumberAt(sampleData,0,"3.14"); success = CkJsonObject_SetNumberOf(sampleData,"answer","42"); // Show the changes: printf("%s\n",CkJsonObject_emit(json)); // Add a null value named "afterApple" just after "apple" success = CkJsonObject_AddNullAt(sampleData,2,"afterApple"); // Add a boolean value just after "pi" success = CkJsonObject_AddBoolAt(sampleData,1,"afterPi",FALSE); CkJsonObject_Dispose(sampleData); // Examine the changes.. printf("%s\n",CkJsonObject_emit(json)); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.