android客户端像这样发送数据给服务器(JSP),服务器怎么接收
android客户端发送:
HttpPost httpPost = new HttpPost(http://xxx:8080/xxxx/sss.action);
List<Users> userlist= new ArrayList<Users>();
JSONObject jsonObject = new JSONObject();
jsonObject.put("uemail", "eee@eee.com");
jsonObject.put("password", 123456);
userlist.add(new BasicNameValuePair("jsonString", jsonObject.toString()));
httpPost.setEntity(new UrlEncodedFormEntity(userlist));
服务器端(JSP)怎么接收:
------解决方案--------------------
同意楼主