我收到错误“HttpClient 类型的方法 executeMethod(GetMethod) 未定义”。下面是我的代码。
HttpClient client = new DefaultHttpClient();
GetMethod get = new GetMethod("http://10.0.2.2:8080/GnP22/GetNpostServlet?TicketNo="+etTkt.getText());
try {
int status = client.executeMethod(get);
//TextView 3
//resultado=(TextView)findViewById(R.id.ws_response);
String res="";
if(status!=404)
res=get.getResponseBodyAsString();
else
//res=getString(R.string.ws_not_found);
tvDescription.setText(res);
}
catch (Exception e) {
Log.e("Error:",e.getMessage());
}
finally {
get.releaseConnection();
get=null;
}
我已将 httpclient3.1 jar 作为库附加。