Como criar JSONArray correto em Java usando JSONObject

129

como posso criar um objeto JSON como o seguinte, em 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"}
    ]
}

Eu encontrei muitos exemplos, mas não exatamente minha string JSONArray.

user2010955
fonte

Respostas:

247

Aqui está um código usando o java 6 para você começar:

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

Edit: Desde que tem havido muita confusão sobre putvs addaqui vou tentar explicar a diferença. No java 6 org.json.JSONArray contém o putmétodo e no java 7 javax.json contém o addmétodo

Um exemplo disso usando o padrão do construtor no java 7 é mais ou menos assim:

JsonObject jo = Json.createObjectBuilder()
  .add("employees", Json.createArrayBuilder()
    .add(Json.createObjectBuilder()
      .add("firstName", "John")
      .add("lastName", "Doe")))
  .build();
Grammin
fonte
3
talvez também envolva em try / catch? (ou o método tem de ter lança declaração)
Lukas1
8
JSONArray não possui um método put.
Jim
2
use add em vez de put #
CleanX
1
@PT_C sim JsonObject jo = Json.createObjectBuilder (); jo.add ("firstName", "John"); jo.add ("lastName", "Doe"); jo.build ();
Grammin 21/09/2015
1
@ArnoldBrown Para adicionar uma matriz ao mainObj, ela precisa ter uma chave.
Grammin 24/10/19
15

Suponho que você esteja obtendo esse JSON de um servidor ou arquivo e deseje criar um objeto JSONArray a partir dele.

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 isto ajude :)

Naeem A. Malik
fonte
11

Um método pequeno e reutilizável pode ser gravado para criar o objeto json da pessoa para evitar 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;
  }
Manasi
fonte
1

Por favor, tente isso ... espero que ajude

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;
MSD
fonte