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
向服务器端发送一些数据。我正在尝试发送。
现在任何人都可以告诉我如何将场所对象发送到服务器吗?