私はいくつかのhttpclinetのコードを書きました
私のサーバーでは2つのリンクアクションしか許可されていないため、簡単に詰まることが原因です
HttpClient HttpClient リンクを置換して切断する必要があります
同じアクティビティで簡単に置き換えることができます
ただし、同じ HttpClient リンクを共有する方法のフラグメントが変更されています。
切断を完了するために置換機能を実装するための要件
HttpClient httpclient = new DefaultHttpClient();
//Regardless of the implementation of several actions are repeated replace
private void JS() {
HttpPost httppost=new HttpPost("IP");
List<NameValuePair> params=new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("s1","2"));
try {
httppost.setEntity(new UrlEncodedFormEntity(params,HTTP.ISO_8859_1));
} catch (UnsupportedEncodingException e1) {
e1.printStackTrace();
}
HttpResponse response = null;
try {
response = httpclient.execute(httppost);
} catch (ClientProtocolException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
}
if(response.getStatusLine().getStatusCode()==200){
try {
String strResult=EntityUtils.toString(response.getEntity());
} catch (ParseException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
これに関する他の情報を補足する必要があります。お知らせください