我的问题很简单,我想将JSONObject
添加到我存储在MongoDB数据库中的JSONArray
。我可以轻松添加所有类型的数据,例如Strings
,Ints
等,但不能JSONObjects
。
我在我的代码中这样做:
public void done(ParseObject lan, ParseException e) {
if(e==null){
JSONObject object = new JSONObject();
try{
object.put("PlayerName","John");
object.put("ID",514145);
lan.add("Participants",object); //nothing gets inserted
lan.add("Participants",15); //works fine
lan.add("Participants",JSONObject.null); //works fine too
}catch (JSONException error){
}
lan.increment("Number");
lan.saveInBackground();
}else{
Log.i("Parse Error","error");
}
}
但我的数据库中没有出现任何内容,并且没有出现任何错误。 你们有任何关于如何做到这一点的线索吗?
答案 0 :(得分:2)
尝试使用object.toString()
代替object
。
lan.add("Participants", object.toString());
<强> JSON:强>
{"Participants":["{\"PlayerName\":\"John\",\"ID\":514145}"]}
要解析此JSON,请尝试以下操作:
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");
希望这会有所帮助〜
答案 1 :(得分:1)
将该Json对象转换为String并以字符串格式存储
lan.add("Participants",object.toString());
当您想要使用它时,您可以像这样轻松地将其转换为Json对象
JSONObject jObj=new JSONObject("Your Json String");