Sample code for 30+ languages & platforms
Android™

Build JSON with Mixture of Arrays and Objects

See more JSON Examples

Another example showing how to build JSON containing a mixture of arrays and objects.

Chilkat Android™ Downloads

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

    //  We want to build the following JSON:

    //  { 
    //    "accountEnabled": true,
    //    "assignedLicenses": [
    //      { 
    //        "disabledPlans": [ "bea13e0c-3828-4daa-a392-28af7ff61a0f" ],
    //        "skuId": "skuId-value"
    //      }
    //    ],
    //    "assignedPlans": [
    //      { 
    //        "assignedDateTime": "datetime-value",
    //        "capabilityStatus": "capabilityStatus-value",
    //        "service": "service-value",
    //        "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //      }
    //    ],
    //    "businessPhones": [
    //      "businessPhones-value"
    //    ],
    //    "city": "city-value",
    //    "companyName": "companyName-value"
    //  }

    CkJsonObject json = new CkJsonObject();
    json.UpdateBool("accountEnabled",true);
    json.put_I(0);
    json.UpdateString("assignedLicenses[i].disabledPlans[0]","bea13e0c-3828-4daa-a392-28af7ff61a0f");
    json.UpdateString("assignedLicenses[i].skuId","skuId-value");
    json.UpdateString("assignedPlans[i].assignedDateTime","datetime-value");
    json.UpdateString("assignedPlans[i].capabilityStatus","capabilityStatus-value");
    json.UpdateString("assignedPlans[i].service","service-value");
    json.UpdateString("assignedPlans[i].servicePlanId","bea13e0c-3828-4daa-a392-28af7ff61a0f");
    json.UpdateString("businessPhones[i]","businessPhones-value");
    json.UpdateString("city","city-value");
    json.UpdateString("companyName","companyName-value");

    json.put_EmitCompact(false);
    Log.i(TAG, json.emit());

    //  Output:

    //  { 
    //    "accountEnabled": true,
    //    "assignedLicenses": [
    //      { 
    //        "disabledPlans": [
    //          "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //        ],
    //        "skuId": "skuId-value"
    //      }
    //    ],
    //    "assignedPlans": [
    //      { 
    //        "assignedDateTime": "datetime-value",
    //        "capabilityStatus": "capabilityStatus-value",
    //        "service": "service-value",
    //        "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //      }
    //    ],
    //    "businessPhones": [
    //      "businessPhones-value"
    //    ],
    //    "city": "city-value",
    //    "companyName": "companyName-value"
    //  }

  }

  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."
  }
}