Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 JSON 中获取信息。服务器响应:
{ "id" : { "$id" : "515a4f1d03cfebb61800097b" }, "body" : "This is the body" }
body我可以抓住
body
String body = json.getString("body");
但不知道如何获取 'id' 中包含的字符串。
提前感谢您的帮助!
不知道如何获取 'id' 中包含的字符串。
因为当前 JSONObject 包含 1 个 JSONObject 和一个 body 键。要从内部 JSONObject获取$id,您可以将其获取为:
$id
JSONObject jsonobj_id=json.getJSONObject("id"); // now get $id from id JSONObject String str_id=jsonobj_id.optString("$id");