次のコードがありますが、Webページのヘッダー情報をプルバックするだけでよいため、後でHttpHeadメソッドに置き換えられます。変更後、同じWebページのセットのHttpGetよりも平均してHttpHeadが戻るのに時間がかかることに気付きました。正常ですか?ここで何が間違っている可能性がありますか?
HttpClient httpclient = new DefaultHttpClient();
// the time it takes to open TCP connection.
httpclient.getParams().setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT, this.timeout);
// timeout when server does not send data.
httpclient.getParams().setParameter(CoreConnectionPNames.SO_TIMEOUT, this.timeout);
// the get method
HttpGet httpget = new HttpGet(url);
HttpResponse response = httpclient.execute(httphead);