Comment créer un JSONArray correct en Java à l'aide de JSONObject

129

Comment puis-je créer un objet JSON comme le suivant, en Java à l'aide de 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"}
    ]
}

J'ai trouvé beaucoup d'exemples, mais pas ma chaîne JSONArray exactement.

user2010955
la source

Réponses:

247

Voici un peu de code utilisant java 6 pour vous aider à démarrer:

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: Puisqu'il y a eu beaucoup de confusion sur putvs addici, je vais essayer d'expliquer la différence. Dans java 6 org.json.JSONArray contient la putméthode et dans java 7 javax.json contient leadd méthode.

Un exemple de ceci utilisant le modèle de générateur dans java 7 ressemble à ceci:

JsonObject jo = Json.createObjectBuilder()
  .add("employees", Json.createArrayBuilder()
    .add(Json.createObjectBuilder()
      .add("firstName", "John")
      .add("lastName", "Doe")))
  .build();
Grammin
la source
3
peut-être aussi envelopper dans try / catch? (ou la méthode doit avoir une déclaration jette)
Lukas1
8
JSONArray n'a pas de méthode put.
Jim
2
utiliser add au lieu de put
CleanX
1
@PT_C yep JsonObject jo = Json.createObjectBuilder (); jo.add ("prénom", "Jean"); jo.add ("nom", "biche"); jo.build ();
Grammin
1
@ArnoldBrown Pour ajouter un tableau à mainObj, il doit avoir une clé.
Grammin
15

Je suppose que vous obtenez ce JSON à partir d'un serveur ou d'un fichier et que vous souhaitez en créer un objet JSONArray.

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

J'espère que cela t'aides :)

Naeem A. Malik
la source
11

Une petite méthode réutilisable peut être écrite pour créer un objet json person afin d'éviter le code en double

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
la source
1

Veuillez essayer ceci ... j'espère que cela vous aidera

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
la source