Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Android™ Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Android™) JSON FindRecord Example

Demonstrates the FindRecord method for searching an array of JSON records. The data used in this example is available at JSON sample data for FindRecord.

Note: This example requires Chilkat v9.5.0.63 or later.

Chilkat Android™ Downloads

Android™ Java Libraries

Android C/C++ Libraries

// 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);

    // Note: This example requires Chilkat v9.5.0.63 or later.
    CkJsonObject json = new CkJsonObject();

    boolean success = json.LoadFile("qa_data/json/qb_accounts.json");

    // A sample of the content of qb_accounts.json is shown at the bottom of this example.
    // The goal is to search the array of Account records to return the 1st match

    // Find the account with the name "Advertising"
    String arrayPath = "QueryResponse.Account";
    String relativePath = "Name";
    String value = "Advertising";
    boolean caseSensitive = true;

    CkJsonObject accountRec = json.FindRecord(arrayPath,relativePath,value,caseSensitive);
    if (json.get_LastMethodSuccess() != true) {
        Log.i(TAG, "Record not found.");
        return;
        }

    // The accountRec should contain this:

    //       {
    //         "Name": "Advertising",
    //         "SubAccount": false,
    //         "FullyQualifiedName": "Advertising",
    //         "Active": true,
    //         "Classification": "Expense",
    //         "AccountType": "Expense",
    //         "AccountSubType": "AdvertisingPromotional",
    //         "CurrentBalance": 0,
    //         "CurrentBalanceWithSubAccounts": 0,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "7",
    //         "SyncToken": "0",
    //         "MetaData": {
    //           "CreateTime": "2016-09-09T14:42:07-07:00",
    //           "LastUpdatedTime": "2016-09-09T14:42:07-07:00"
    //         }
    //       }

    Log.i(TAG, "FullyQualifiedName: " + accountRec.stringOf("FullyQualifiedName"));
    Log.i(TAG, "AccountType: " + accountRec.stringOf("AccountType"));
    Log.i(TAG, "AccountSubType: " + accountRec.stringOf("AccountSubType"));
    Log.i(TAG, "----");

    // ------------------------------------------------------------------
    // Find the first account where the currency is USD
    relativePath = "CurrencyRef.value";
    value = "USD";
    caseSensitive = true;

    accountRec = json.FindRecord(arrayPath,relativePath,value,caseSensitive);
    if (json.get_LastMethodSuccess() != true) {
        Log.i(TAG, "Record not found.");
        return;
        }

    Log.i(TAG, "Name: " + accountRec.stringOf("Name"));
    Log.i(TAG, "CurrencyRef.name: " + accountRec.stringOf("CurrencyRef.name"));
    Log.i(TAG, "----");

    // ------------------------------------------------------------------
    // Find the first account with "receivable" in the name (case insensitive)
    relativePath = "Name";
    value = "*receivable*";
    caseSensitive = false;

    accountRec = json.FindRecord(arrayPath,relativePath,value,caseSensitive);
    if (json.get_LastMethodSuccess() != true) {
        Log.i(TAG, "Record not found.");
        return;
        }

    Log.i(TAG, "Name: " + accountRec.stringOf("Name"));
    Log.i(TAG, "----");

    // -----------------------------------------------------------------
    // qb_accounts.json contains this data
    // 
    // {
    //   "QueryResponse": {
    //     "Account": [
    //       {
    //         "Name": "Accounts Payable (A/P)",
    //         "SubAccount": false,
    //         "Description": "Description added during update.",
    //         "FullyQualifiedName": "Accounts Payable (A/P)",
    //         "Active": true,
    //         "Classification": "Liability",
    //         "AccountType": "Accounts Payable",
    //         "AccountSubType": "AccountsPayable",
    //         "CurrentBalance": -1602.67,
    //         "CurrentBalanceWithSubAccounts": -1602.67,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "33",
    //         "SyncToken": "1",
    //         "MetaData": {
    //           "CreateTime": "2016-09-10T10:12:02-07:00",
    //           "LastUpdatedTime": "2016-10-24T16:41:39-07:00"
    //         }
    //       },
    //       {
    //         "Name": "Accounts Receivable (A/R)",
    //         "SubAccount": false,
    //         "FullyQualifiedName": "Accounts Receivable (A/R)",
    //         "Active": true,
    //         "Classification": "Asset",
    //         "AccountType": "Accounts Receivable",
    //         "AccountSubType": "AccountsReceivable",
    //         "CurrentBalance": 5281.52,
    //         "CurrentBalanceWithSubAccounts": 5281.52,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "84",
    //         "SyncToken": "0",
    //         "MetaData": {
    //           "CreateTime": "2016-09-14T14:49:29-07:00",
    //           "LastUpdatedTime": "2016-09-17T13:16:17-07:00"
    //         }
    //       },
    //       {
    //         "Name": "Advertising",
    //         "SubAccount": false,
    //         "FullyQualifiedName": "Advertising",
    //         "Active": true,
    //         "Classification": "Expense",
    //         "AccountType": "Expense",
    //         "AccountSubType": "AdvertisingPromotional",
    //         "CurrentBalance": 0,
    //         "CurrentBalanceWithSubAccounts": 0,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "7",
    //         "SyncToken": "0",
    //         "MetaData": {
    //           "CreateTime": "2016-09-09T14:42:07-07:00",
    //           "LastUpdatedTime": "2016-09-09T14:42:07-07:00"
    //         }
    //       },
    //       {
    //         "Name": "Arizona Dept. of Revenue Payable",
    //         "SubAccount": false,
    //         "FullyQualifiedName": "Arizona Dept. of Revenue Payable",
    //         "Active": true,
    //         "Classification": "Liability",
    //         "AccountType": "Other Current Liability",
    //         "AccountSubType": "GlobalTaxPayable",
    //         "CurrentBalance": 0,
    //         "CurrentBalanceWithSubAccounts": 0,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "89",
    //         "SyncToken": "0",
    //         "MetaData": {
    //           "CreateTime": "2016-09-16T12:17:04-07:00",
    //           "LastUpdatedTime": "2016-09-17T13:05:01-07:00"
    //         }
    //       },
    //       {
    //         "Name": "Automobile",
    //         "SubAccount": false,
    //         "FullyQualifiedName": "Automobile",
    //         "Active": true,
    //         "Classification": "Expense",
    //         "AccountType": "Expense",
    //         "AccountSubType": "Auto",
    //         "CurrentBalance": 0,
    //         "CurrentBalanceWithSubAccounts": 0,
    //         "CurrencyRef": {
    //           "value": "USD",
    //           "name": "United States Dollar"
    //         },
    //         "domain": "QBO",
    //         "sparse": false,
    //         "Id": "55",
    //         "SyncToken": "0",
    //         "MetaData": {
    //           "CreateTime": "2016-09-14T10:15:53-07:00",
    //           "LastUpdatedTime": "2016-09-14T10:16:05-07:00"
    //         }
    //       },
    // ...
    // 

  }

  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.