如何发布JSON



我想以以下格式发布JSON并获得响应。

提到JSON:

{
  "success": true,
  "data": {
    "id": "234576"
    "name": "string"
  }
}

创建2个JSON对象,例如:

JSONObject parent = new JSONObject();
JSONObject child = new JSONObject();

在子对象中,放置:

parent.put("success", true);
child.put("id", "234567");
child.put("name", "string");
parent.put("data", child);

,只需使用此父对象调用您的服务。

相关内容

  • 没有找到相关文章

最新更新