JSON.simple - Mesclando matrizes

Em JSON.simple, podemos mesclar dois Arrays JSON facilmente usando o método JSONArray.addAll ().

O exemplo a seguir ilustra o conceito acima.

Exemplo

import java.io.IOException;
import org.json.simple.JSONArray;

class JsonDemo {
   public static void main(String[] args) throws IOException {
      JSONArray list1 = new JSONArray();
      list1.add("foo");
      list1.add(new Integer(100));

      JSONArray list2 = new JSONArray();       
      list2.add(new Double(1000.21));
      list2.add(new Boolean(true));
      list2.add(null);

      list1.addAll(list2);       
      System.out.println(list1);       
   }
}

Resultado

["foo",100,1000.21,true,null]