Come creare JSONArray corretto in Java usando JSONObject


129

come posso creare un oggetto JSON come il seguente, in 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"}
    ]
}

Ho trovato molti esempi, ma non esattamente la mia stringa JSONArray.

Risposte:


247

Ecco un po 'di codice che utilizza Java 6 per iniziare:

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

Modifica: Dal momento che c'è stata molta confusione su putvs addqui, cercherò di spiegare la differenza. In java 6 org.json.JSONArray contiene il putmetodo e in java 7 javax.json contiene il metodoadd metodo.

Un esempio di ciò che utilizza il modello builder in java 7 è simile al seguente:

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

3
forse anche avvolgere in try / catch? (o il metodo deve avere una dichiarazione di lancio)
Lukas1,

8
JSONArray non ha un metodo put.
Jim,

2
usa add invece di put
CleanX il

1
@PT_C yep JsonObject jo = Json.createObjectBuilder (); jo.add ("firstName", "John"); jo.add ("lastName", "Doe"); jo.build ();
Grammin,

1
@ArnoldBrown Per aggiungere un array a mainObj deve avere una chiave.
Grammin,

15

Suppongo che tu stia ottenendo questo JSON da un server o un file e che tu voglia creare un oggetto JSONArray da esso.

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

Spero che questo ti aiuti :)


11

È possibile scrivere un piccolo metodo riutilizzabile per creare un oggetto json personale per evitare il codice duplicato

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

Per favore prova questo ... spero che ti aiuti

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;
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.