Wie erstelle ich ein JSON-Objekt mit String?

87

Ich möchte ein JSON-Objekt mit String erstellen.

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

Um den obigen JSON zu erstellen, verwende ich diesen.

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

Ich möchte wissen, wie ich einen JSON erstellen kann, der ein JSON-Array enthält.

Unten finden Sie das Beispiel JSON.

{
  "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,
    }
  ]
}

Vielen Dank.

Ravi
quelle

Antworten:

178

JSONArray kann sein, was Sie wollen.

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"}
srain
quelle
Wie konvertiere ich es JSONObjectvon einem String zurück in a ?
Morha13
JSONObject jsonObj = new JSONObject("your_json_string");
Camille
Zu Ihrer Information, dass dies JSON-Arrays nicht analysieren kann (obwohl sie technisch gültiges JSON sind). Zum Beispiel versuchen JSONObject("[{\"foo\":2, \"bar\": 3}]");Ergebnisse inA JSONObject text must begin with '{' at 1 [character 2 line 1]
user2490003
1
Funktioniert wie ein Zauber
Sobhit Sharma
0

Wenn Sie das gson.JsonObject verwenden, können Sie so etwas haben:

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
quelle