¿Cómo crear un objeto JSON usando String?

94

Quiero crear un objeto JSON usando String.

Ejemplo: JSON {"test1":"value1","test2":{"id":0,"name":"testName"}}

Para crear el JSON anterior, estoy usando esto.

String message;
JSONObject json = new JSONObject();

json.put("test1", "value1");

JSONObject jsonObj = new JSONObject();

jsonObj.put("id", 0);
jsonObj.put("name", "testName");
json.put("test2", jsonObj);

message = json.toString();
System.out.println(message);

Quiero saber cómo puedo crear un JSON que tenga JSON Array.

A continuación se muestra el JSON de muestra.

{
  "name": "student",
   "stu": {
    "id": 0,
    "batch": "batch@"
  },
  "course": [
    {
      "information": "test",
      "id": "3",
      "name": "course1"
    }
  ],
  "studentAddress": [
    {
      "additionalinfo": "test info",
      "Address": [
        {
          "H.No": "1243",
          "Name": "Temp Address",
          "locality": "Temp locality",
           "id":33          
        },
        {
           "H.No": "1243",
          "Name": "Temp Address",
          "locality": "Temp locality", 
           "id":33                   
        },        
        {
           "H.No": "1243",
          "Name": "Temp Address",
          "locality": "Temp locality", 
           "id":36                   
        }
      ],
"verified": true,
    }
  ]
}

Gracias.

ravi
fuente

Respuestas:

186

JSONArray puede ser lo que quieras.

String message;
JSONObject json = new JSONObject();
json.put("name", "student");

JSONArray array = new JSONArray();
JSONObject item = new JSONObject();
item.put("information", "test");
item.put("id", 3);
item.put("name", "course1");
array.add(item);

json.put("course", array);

message = json.toString();

// message
// {"course":[{"id":3,"information":"test","name":"course1"}],"name":"student"}
sanar
fuente
¿Cómo lo convierto de nuevo a JSONObjectuna cadena?
morha13
JSONObject jsonObj = new JSONObject("your_json_string");
Camille
Para su información, esto no podrá analizar las matrices JSON (aunque sean JSON técnicamente válidas). Por ejemplo, intentar JSONObject("[{\"foo\":2, \"bar\": 3}]");resultados enA JSONObject text must begin with '{' at 1 [character 2 line 1]
user2490003
1
Funciona como un encanto
Sobhit Sharma
0

Si usa gson.JsonObject, puede tener algo como eso:

import com.google.gson.JsonObject;
import com.google.gson.JsonParser;

String jsonString = "{'test1':'value1','test2':{'id':0,'name':'testName'}}"
JsonObject jsonObject = (JsonObject) jsonParser.parse(jsonString)
Lei00
fuente