如何POST一个JSON格式的数据给Restful服务

高手们在线求帮请教下,如何POST一个JSON格式的数据给Restful服务
最新回答
真情已被瓦解

2024-10-31 15:42:35

在Android/java平台上实现POST一个json数据: JSONObject jsonObj = new JSONObject(); jsonObj.put("username", username); jsonObj.put("apikey", apikey); // Create the POST object and add the parameters HttpPost httpPost = new HttpPo...