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
(Android™) JSON PathsDemonstrates using "Chilkat JSON Paths" to access parts of a JSON document, or to iterate over parts. This example uses the following JSON document: { "nestedArray" : [ [ [1,2,3], [4,5,6], [7,8,9,10] ], [ [11,12,13], [14,15,16], [17,18,19,20] ], [ [21,22,23], [24,25,26], [27,28,29,30], [31,32,33,34,35,36] ] ], "nestedObject" : { "aaa" : { "bb1" : { "cc1" : "c1Value", "cc2" : "c2Value", "cc3" : "c3Value" }, "bb2" : { "dd1" : "d1Value", "dd2" : "d2Value", "dd3" : "d3Value" } } }, "mixture" : { "arrayA" : [ { "fruit": "apple", "animal": "horse", "job": "fireman", "colors": ["red","blue","green"] }, { "fruit": "pear", "animal": "plankton", "job": "waiter", "colors": ["yellow","orange","purple"] }, { "fruit": "kiwi", "animal": "echidna", "job": "astronaut", "colors": ["magenta","tan","pink"] } ] }, "name.with.dots" : { "grain" : "oats" } }
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); CkJsonObject json = new CkJsonObject(); json.put_EmitCompact(false); // Assume the file contains the data as shown above.. boolean success = json.LoadFile("qa_data/json/pathSample.json"); if (success != true) { Log.i(TAG, json.lastErrorText()); return; } // First, let's get the value of "cc1" // The path to this value is: nestedObject.aaa.bb1.cc1 Log.i(TAG, json.stringOf("nestedObject.aaa.bb1.cc1")); // Now let's get number 18 from the nestedArray. // It is located at nestedArray[1][2][1] // (remember: Indexing is 0-based) Log.i(TAG, "This should be 18: " + String.valueOf(json.IntOf("nestedArray[1][2][1]"))); // We can do the same thing in a more roundabout way using the // I, J, and K properties. (The I,J,K properties will be convenient // for iterating over arrays, as we'll see later.) json.put_I(1); json.put_J(2); json.put_K(1); Log.i(TAG, "This should be 18: " + String.valueOf(json.IntOf("nestedArray[i][j][k]"))); // Let's iterate over the array containing the numbers 17, 18, 19, 20. // First, use the SizeOfArray method to get the array size: int sz = json.SizeOfArray("nestedArray[1][2]"); // The size should be 4. Log.i(TAG, "size of array = " + String.valueOf(sz) + " (should equal 4)"); // Now iterate... int i; for (i = 0; i <= sz - 1; i++) { json.put_I(i); Log.i(TAG, String.valueOf(json.IntOf("nestedArray[1][2][i]"))); } // Let's use a triple-nested loop to iterate over the nestedArray: int j; int k; // szI should equal 1. int szI = json.SizeOfArray("nestedArray"); for (i = 0; i <= szI - 1; i++) { json.put_I(i); int szJ = json.SizeOfArray("nestedArray[i]"); for (j = 0; j <= szJ - 1; j++) { json.put_J(j); int szK = json.SizeOfArray("nestedArray[i][j]"); for (k = 0; k <= szK - 1; k++) { json.put_K(k); Log.i(TAG, String.valueOf(json.IntOf("nestedArray[i][j][k]"))); } } } // Now let's examine how to navigate to JSON objects contained within JSON arrays. // This line of code gets the value "kiwi" contained within "mixture" Log.i(TAG, json.stringOf("mixture.arrayA[2].fruit")); // This line of code gets the color "yellow" Log.i(TAG, json.stringOf("mixture.arrayA[1].colors[0]")); // Getting an object at a path: // This gets the 2nd object in "arrayA" CkJsonObject obj2 = json.ObjectOf("mixture.arrayA[1]"); // This object's "animal" should be "plankton" Log.i(TAG, obj2.stringOf("animal")); // Note that paths are relative to the object, not the absolute root of the JSON document. // Starting from obj2, "purple" is at "colors[2]" Log.i(TAG, obj2.stringOf("colors[2]")); // Getting an array at a path: // This gets the array containing the colors red, green, blue: CkJsonArray arr1 = json.ArrayOf("mixture.arrayA[0].colors"); int szArr1 = arr1.get_Size(); for (i = 0; i <= szArr1 - 1; i++) { Log.i(TAG, String.valueOf(i) + ": " + arr1.stringAt(i)); } // The Chilkat JSON path uses ".", "[", and "]" chars for separators. When a name // contains one of these chars, use double-quotes in the path: Log.i(TAG, json.stringOf("\"name.with.dots\".grain")); } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.