MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Parse.com fügt JSON-Objekt zu JSON-Array hinzu

Versuchen Sie es mit object.toString() statt object .

lan.add("Participants", object.toString());

JSON:

{"Participants":["{\"PlayerName\":\"John\",\"ID\":514145}"]}

Um diesen JSON zu analysieren, versuchen Sie Folgendes:

JSONObject jsonObj = new JSONObject(YOUR_JSON_STRING);

// Participants
JSONArray participantsJsonArray = jsonObj.getJSONArray("Participants");

// Participant
JSONObject participanJsonObject = participantsJsonArray.getJSONObject(0);

// PlayerName
String playerName = participanJsonObject.getString("PlayerName");
// ID
String id = participanJsonObject.getInt("ID");

Hoffe, das hilft ~