我正在尝试使用 HTTP POST 连接到 apache tomcat 服务器,当我看到服务器的 LOG 文件显示GET /login/validate_doc.jsp HTTP/1.1" 200 685,
这意味着当我使用 HttpPost 发送并且服务器未接收到表单参数时,它正在获取 GET 请求。
我的代码如下:
HttpPost post_http=null;
post_http=new HttpPost("http://somexx.ac.in/medONmob/validate_doc.jsp");
try
{
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("username",username));
nameValuePairs.add(new BasicNameValuePair("password",password));
post_http.setEntity(new UrlEncodedFormEntity(nameValuePairs));
我哪里错了……???请帮帮我