Sample code for 30+ languages & platforms
Java

Example: JsonObject.NewArrayOf method

See more JSON Examples

Demonstrates the NewArrayOf method.

Chilkat Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

    String big_cats = "[\"lion\",\"tiger\",\"leopard\",\"jaguar\",\"cheetah\",\"snow leopard\",\"clouded leopard\",\"cougar\",\"puma\",\"panther\"]";

    CkJsonObject json = new CkJsonObject();

    json.UpdateString("test","abc");

    success = json.NewArrayOf("big_cats",big_cats);
    if (success == false) {
        System.out.println(json.lastErrorText());
        return;
        }

    json.put_EmitCompact(false);
    System.out.println(json.emit());

    //  Result:

    //  {
    //    "test": "abc",
    //    "big_cats": [
    //      "lion",
    //      "tiger",
    //      "leopard",
    //      "jaguar",
    //      "cheetah",
    //      "snow leopard",
    //      "clouded leopard",
    //      "cougar",
    //      "puma",
    //      "panther"
    //    ]
    //  }
  }
}