我正在将Android手机中的JSON数据发送到Restful Web服务,并希望获取该数据并存储在数据库中。当从Android客户端收到请求时,如何在服务器端获取数据。
我正在使用这个
JSONObject holder = new JSONObject();
holder.put("Mukesh", "hi Micky");
holder.put("Waseem", "hi Waseem");
StringEntity entity = new StringEntity(holder.toString());
postrequest.setEntity(entity);
postrequest.setHeader("Accept", "application/json");
postrequest.setHeader("Content-type", "application/json");
并访问此网址<ip_address_to_my_server>:8080/RestFulWS/rest/hello
,其中hello
是类名