Cómo crear JSONArray correcto en Java usando JSONObject


129

¿Cómo puedo crear un objeto JSON como el siguiente, en Java usando JSONObject?

{
    "employees": [
        {"firstName": "John", "lastName": "Doe"}, 
        {"firstName": "Anna", "lastName": "Smith"}, 
        {"firstName": "Peter", "lastName": "Jones"}
    ],
    "manager": [
        {"firstName": "John", "lastName": "Doe"}, 
        {"firstName": "Anna", "lastName": "Smith"}, 
        {"firstName": "Peter", "lastName": "Jones"}
    ]
}

He encontrado muchos ejemplos, pero no es exactamente mi cadena JSONArray.

Respuestas:


247

Aquí hay un código que usa Java 6 para comenzar:

JSONObject jo = new JSONObject();
jo.put("firstName", "John");
jo.put("lastName", "Doe");

JSONArray ja = new JSONArray();
ja.put(jo);

JSONObject mainObj = new JSONObject();
mainObj.put("employees", ja);

Editar: Dado que ha habido mucha confusión sobre putvs addaquí, intentaré explicar la diferencia. En java 6 org.json.JSONArray contiene el putmétodo y en java 7 javax.json contiene el addmétodo.

Un ejemplo de esto usando el patrón de construcción en Java 7 se parece a esto:

JsonObject jo = Json.createObjectBuilder()
  .add("employees", Json.createArrayBuilder()
    .add(Json.createObjectBuilder()
      .add("firstName", "John")
      .add("lastName", "Doe")))
  .build();

3
tal vez también envolver en try / catch? (o el método debe tener una declaración de lanzamiento)
Lukas1

8
JSONArray no tiene un método de venta.
Jim

2
use add en lugar de put
CleanX

1
@PT_C sí JsonObject jo = Json.createObjectBuilder (); jo.add ("nombre", "John"); jo.add ("apellido", "Doe"); jo.build ();
Grammin

1
@ArnoldBrown Para agregar una matriz a mainObj, debe tener una clave.
Grammin

15

Supongo que está obteniendo este JSON de un servidor o un archivo, y desea crear un objeto JSONArray a partir de él.

String strJSON = ""; // your string goes here
JSONArray jArray = (JSONArray) new JSONTokener(strJSON).nextValue();
// once you get the array, you may check items like
JSONOBject jObject = jArray.getJSONObject(0);

Espero que esto ayude :)


11

Se puede escribir un pequeño método reutilizable para crear un objeto json de persona para evitar el código duplicado

JSONObject  getPerson(String firstName, String lastName){
   JSONObject person = new JSONObject();
   person .put("firstName", firstName);
   person .put("lastName", lastName);
   return person ;
} 

public JSONObject getJsonResponse(){

    JSONArray employees = new JSONArray();
    employees.put(getPerson("John","Doe"));
    employees.put(getPerson("Anna","Smith"));
    employees.put(getPerson("Peter","Jones"));

    JSONArray managers = new JSONArray();
    managers.put(getPerson("John","Doe"));
    managers.put(getPerson("Anna","Smith"));
    managers.put(getPerson("Peter","Jones"));

    JSONObject response= new JSONObject();
    response.put("employees", employees );
    response.put("manager", managers );
    return response;
  }

1

Por favor intente esto ... espero que ayude

JSONObject jsonObj1=null;
JSONObject jsonObj2=null;
JSONArray array=new JSONArray();
JSONArray array2=new JSONArray();

jsonObj1=new JSONObject();
jsonObj2=new JSONObject();


array.put(new JSONObject().put("firstName", "John").put("lastName","Doe"))
.put(new JSONObject().put("firstName", "Anna").put("v", "Smith"))
.put(new JSONObject().put("firstName", "Peter").put("v", "Jones"));

array2.put(new JSONObject().put("firstName", "John").put("lastName","Doe"))
.put(new JSONObject().put("firstName", "Anna").put("v", "Smith"))
.put(new JSONObject().put("firstName", "Peter").put("v", "Jones"));

jsonObj1.put("employees", array);
jsonObj1.put("manager", array2);

Response response = null;
response = Response.status(Status.OK).entity(jsonObj1.toString()).build();
return response;
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.