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
(VBScript) Load a JSON ArrayThe Chilkat JSON API requires the top-level JSON to be an object. Therefore, to load an array requires that it first be wrapped as an object.
Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") 'Create a Unicode (utf-16) output text file. Set outFile = fso.CreateTextFile("output.txt", True, True) ' Imagine we want to load this JSON array for parsing: jsonArrayStr = "[{""id"":200},{""id"":196}]" ' First wrap it in a JSON object by prepending "{ "array":" and appending "}" ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbJson = CreateObject("Chilkat.StringBuilder") success = sbJson.Append("{""array"":") success = sbJson.Append(jsonArrayStr) success = sbJson.Append("}") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = CreateObject("Chilkat.JsonObject") success = json.Load(sbJson.GetAsString()) ' Now we can get the JSON array ' jArray is a Chilkat.JsonArray Set jArray = json.ArrayAt(0) ' Do what you want with the JSON array... ' For example: ' jObjId is a Chilkat.JsonObject Set jObjId = jArray.ObjectAt(0) outFile.WriteLine(jObjId.IntOf("id")) outFile.Close |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.