如何将嵌套的json对象作为Post发送为请求?

时间:2019-06-11 11:54:51

标签: android spring hibernate spring-mvc

Json结构:

    {
      "Place":{
          "PlaceId": 78943,
           "HotelId": 38789,
           "PlaceName": "hggy",
           "AlarmType": 8,
      },
      "MapType": "Google",
      "PrimaryKey": "78912fgrtukso78sjsk412",
      "Language": "English",
    }  

这是我的代码:

    protected Map<String, String> getParams() throws AuthFailureError{
      HashMap<String, String> obj = new HashMap<>();
      try{
        jsonObject.put("PlaceId",App.FenceId);
        jsonObject.put("HotelId",App.DeviceId);
        jsonObject.put("PlacwName",editText1.getText().toString());           
        jsonObject.put("AlarmType",App.Latitude);
        jsonObject.put("Latitude",App.Latitude);
       }
    catch(JSONException JError){

     }                             
     obj.put("Place", jsonObject);
   }

我正在使用volley进行json解析。我想使用POST向服务器端发送一些数据。我正在尝试发送。

现在任何人都可以告诉我如何将场所对象发送到服务器吗?

0 个答案:

没有答案