1. ホーム
  2. java

[解決済み] JavaでAndroidのHttpResponseのタイムアウトを設定する方法

2022-03-17 18:25:28

質問

接続状態を確認するために、以下のような関数を作成しました。

private void checkConnectionStatus() {
    HttpClient httpClient = new DefaultHttpClient();

    try {
      String url = "http://xxx.xxx.xxx.xxx:8000/GaitLink/"
                   + strSessionString + "/ConnectionStatus";
      Log.d("phobos", "performing get " + url);
      HttpGet method = new HttpGet(new URI(url));
      HttpResponse response = httpClient.execute(method);

      if (response != null) {
        String result = getResponse(response.getEntity());
        ...

テストのためにサーバーをシャットダウンすると、実行は次の行で長い時間待機します。

HttpResponse response = httpClient.execute(method);

待ち時間が長くならないようにタイムアウトを設定する方法をご存知の方はいらっしゃいますか?

ありがとうございます。

解決方法は?

私の例では、2つのタイムアウトが設定されています。接続タイムアウトは java.net.SocketTimeoutException: Socket is not connected とソケットタイムアウト java.net.SocketTimeoutException: The operation timed out .

HttpGet httpGet = new HttpGet(url);
HttpParams httpParameters = new BasicHttpParams();
// Set the timeout in milliseconds until a connection is established.
// The default value is zero, that means the timeout is not used. 
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
// Set the default socket timeout (SO_TIMEOUT) 
// in milliseconds which is the timeout for waiting for data.
int timeoutSocket = 5000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);

DefaultHttpClient httpClient = new DefaultHttpClient(httpParameters);
HttpResponse response = httpClient.execute(httpGet);

既存のHTTPClient(例:DefaultHttpClientやAndroidHttpClient)のパラメータを設定したい場合は、以下の関数を使用します。 setParams() .

httpClient.setParams(httpParameters);