我正在用 Java 开发 Android 和服务器应用程序。服务器应用程序在 Jetty 上运行。Android 应用程序在同一台计算机上模拟。
Android 应用程序向服务器发送 POST 请求,但服务器的处理程序将其解释为 GET。
当我使用Send HTTP Tool模拟 POST 请求时,它可以完美运行(我的意思是方法的类型是 POST)。
这是 Android 应用程序的代码片段:
HttpClient client = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(client.getParams(),
10000); // Timeout Limit
HttpResponse response;
// Create message
JSONObject json = new JSONObject();
json.put("request_type", "info");
json.put("user_name", mEmail);
// Send message and get response
StringEntity se = new StringEntity(json.toString());
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
HttpPost post = new HttpPost("http://10.0.2.2:8080/app");
post.setEntity(se);
post.setHeader("Accept", "application/json");
post.setHeader("Content-Type", "application/json; charset=UTF-8");
response = client.execute(post);
这是处理程序的代码:
public void handle(String target, Request baseRequest,
HttpServletRequest request, HttpServletResponse response) {
System.out.println(request.getMethod());
}
我不知道可能是什么问题,因为我认为如果我使用 HttpPost,方法类型应该是 POST。