Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

Excel Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Excel) JSON: Miscellaneous Operations

Demonstrates 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
          
	}
}

Download Excel Class Modules

Chilkat Excel Class Modules

Dim json As Chilkat.JsonObject
Set json = Chilkat.NewJsonObject
json.EmitCompact = False

' Assume the file contains the data as shown above..

success = json.LoadFile("qa_data/json/sample2.json")
If (success <> True) Then
    Debug.Print json.LastErrorText
    Exit Sub
End If

' First navigate to the "sampleData" object:

Set sampleData = json.ObjectOf("sampleData")

' Demonstrate BoolAt and BoolOf
Debug.Print "hungry: "; sampleData.BoolOf("hungry")
Debug.Print "hungry: "; sampleData.BoolAt(2)

' StringOf returns the value as a string regardless of it's actual type:
Debug.Print "pi: "; sampleData.StringOf("pi")
Debug.Print "answer: "; sampleData.StringOf("answer")
Debug.Print "withoutValue: "; sampleData.StringOf("withoutValue")
Debug.Print "hungry: "; sampleData.StringOf("hungry")

' Demonstrate IsNullOf / IsNullAt
Debug.Print "withoutValue is null? "; sampleData.IsNullOf("withoutValue")
Debug.Print "withoutValue is null? "; sampleData.IsNullAt(3)
Debug.Print "apple is null? "; sampleData.IsNullOf("apple")
Debug.Print "apple is null? "; sampleData.IsNullAt(1)

' IntOf
Debug.Print "answer: "; sampleData.IntOf("answer")

' SetNullAt, SetNullOf
' Set "pi" to null
success = sampleData.SetNullAt(0)
' Set "answer" to null
success = sampleData.SetNullOf("answer")

' Show the changes:
Debug.Print json.Emit()

' Restore pi and apple:
success = sampleData.SetNumberAt(0,"3.14")
success = sampleData.SetNumberOf("answer","42")

' Show the changes:
Debug.Print json.Emit()

' Add a null value named "afterApple" just after "apple"
success = sampleData.AddNullAt(2,"afterApple")

' Add a boolean value just after "pi"
success = sampleData.AddBoolAt(1,"afterPi",False)

' Examine the changes..
Debug.Print json.Emit()

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.