JavaでAndroidのHttpResponseタイムアウトを設定する方法


333

接続状態を確認するための次の関数を作成しました。

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);

誰かがあまりにも長く待つのを避けるためにタイムアウトを設定する方法を知っていますか?

ありがとう!

回答:


625

私の例では、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);

1
@トーマス:私はあなたのユースケースのためのソリューションで私の答えを編集しました
kuester2000

3
接続がタイムアウトした場合、HttpResponseは何を返しますか?HTTPリクエストが行われた瞬間に、コールが戻ったときにステータスコードをチェックしますが、コールがタイムアウトした場合、このコードをチェックするとNullPointerExceptionが発生します...基本的に、コール時に状況を処理するにはタイムアウトしますか?(私はあなたの答えに非常によく似たコードを使用しています)
Tim

10
@jellyfish-ドキュメントにもかかわらず、AndroidHttpClientはDefaultHttpClientを拡張しませ。むしろ、それはHttpClientを実装します。setParams(HttpParams)メソッドを使用できるようにするには、DefaultHttpClientを使用する必要があります。
テッドホップ

3
やあみんな、素晴らしい答えをありがとう。しかし、接続タイムアウト時にユーザーに乾杯を表示したいのですが...接続がタイムアウトしたときに検出できる方法はありますか?
Arnab Chakraborty、2011

2
動作しません。私はソニーとモトでテストしましたが、それらはすべて隠れています。
thecr0w 2013

13

クライアントで設定するには:

AndroidHttpClient client = AndroidHttpClient.newInstance("Awesome User Agent V/1.0");
HttpConnectionParams.setConnectionTimeout(client.getParams(), 3000);
HttpConnectionParams.setSoTimeout(client.getParams(), 5000);

私はこれをJellyBeanでうまく使用しましたが、古いプラットフォームでも動作するはずです....

HTH


HttpClientとの関係はどうですか?
Sazzad Hissain Khan

8

Jakartaのhttpクライアントライブラリを使用している場合は、次のようなことができます。

        HttpClient client = new HttpClient();
        client.getParams().setParameter(HttpClientParams.CONNECTION_MANAGER_TIMEOUT, new Long(5000));
        client.getParams().setParameter(HttpClientParams.SO_TIMEOUT, new Integer(5000));
        GetMethod method = new GetMethod("http://www.yoururl.com");
        method.getParams().setParameter(HttpMethodParams.SO_TIMEOUT, new Integer(5000));
        method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
        int statuscode = client.executeMethod(method);

5
HttpClientParams.CONNECTION_MANAGER_TIMEOUTは不明
タワニ

* _TIMEOUTパラメータにはclient.getParams()。setIntParameter(..)を使用する必要があります
loafoe

見つけ方?デバイスはWi-Fiに接続されていますが、実際にはWi-Fiを介してアクティブなデータが取得されていません。
ガネーシュカティカー2014

7

デフォルトのhttpクライアントを使用している場合、デフォルトのhttpパラメータを使用してこれを行う方法は次のとおりです。

HttpClient client = new DefaultHttpClient();
HttpParams params = client.getParams();
HttpConnectionParams.setConnectionTimeout(params, 3000);
HttpConnectionParams.setSoTimeout(params, 3000);

元のクレジットはhttp://www.jayway.com/2009/03/17/configuring-timeout-with-apache-httpclient-40/に送られます


5

@ kuester2000の回答が機能しないと言う人は、HTTPリクエストに注意してください。最初にDNSリクエストでホストIPを見つけてから、サーバーに実際のHTTPリクエストを送信するので、 DNSリクエストのタイムアウト。

DNSリクエストのタイムアウトなしでコードが機能した場合は、DNSサーバーに到達できるか、Android DNSキャッシュにアクセスしていることが原因です。ちなみに、デバイスを再起動すると、このキャッシュをクリアできます。

このコードは、元の回答を拡張して、カスタムタイムアウトを使用した手動DNSルックアップを含めます。

//Our objective
String sURL = "http://www.google.com/";
int DNSTimeout = 1000;
int HTTPTimeout = 2000;

//Get the IP of the Host
URL url= null;
try {
     url = ResolveHostIP(sURL,DNSTimeout);
} catch (MalformedURLException e) {
    Log.d("INFO",e.getMessage());
}

if(url==null){
    //the DNS lookup timed out or failed.
}

//Build the request parameters
HttpParams params = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(params, HTTPTimeout);
HttpConnectionParams.setSoTimeout(params, HTTPTimeout);

DefaultHttpClient client = new DefaultHttpClient(params);

HttpResponse httpResponse;
String text;
try {
    //Execute the request (here it blocks the execution until finished or a timeout)
    httpResponse = client.execute(new HttpGet(url.toString()));
} catch (IOException e) {
    //If you hit this probably the connection timed out
    Log.d("INFO",e.getMessage());
}

//If you get here everything went OK so check response code, body or whatever

使用方法:

//Run the DNS lookup manually to be able to time it out.
public static URL ResolveHostIP (String sURL, int timeout) throws MalformedURLException {
    URL url= new URL(sURL);
    //Resolve the host IP on a new thread
    DNSResolver dnsRes = new DNSResolver(url.getHost());
    Thread t = new Thread(dnsRes);
    t.start();
    //Join the thread for some time
    try {
        t.join(timeout);
    } catch (InterruptedException e) {
        Log.d("DEBUG", "DNS lookup interrupted");
        return null;
    }

    //get the IP of the host
    InetAddress inetAddr = dnsRes.get();
    if(inetAddr==null) {
        Log.d("DEBUG", "DNS timed out.");
        return null;
    }

    //rebuild the URL with the IP and return it
    Log.d("DEBUG", "DNS solved.");
    return new URL(url.getProtocol(),inetAddr.getHostAddress(),url.getPort(),url.getFile());
}   

このクラスは、このブログ投稿からのものです。使用する場合は備考を確認してください。

public static class DNSResolver implements Runnable {
    private String domain;
    private InetAddress inetAddr;

    public DNSResolver(String domain) {
        this.domain = domain;
    }

    public void run() {
        try {
            InetAddress addr = InetAddress.getByName(domain);
            set(addr);
        } catch (UnknownHostException e) {
        }
    }

    public synchronized void set(InetAddress inetAddr) {
        this.inetAddr = inetAddr;
    }
    public synchronized InetAddress get() {
        return inetAddr;
    }
}

1
HttpParams httpParameters = new BasicHttpParams();
            HttpProtocolParams.setVersion(httpParameters, HttpVersion.HTTP_1_1);
            HttpProtocolParams.setContentCharset(httpParameters,
                    HTTP.DEFAULT_CONTENT_CHARSET);
            HttpProtocolParams.setUseExpectContinue(httpParameters, true);

            // Set the timeout in milliseconds until a connection is
            // established.
            // The default value is zero, that means the timeout is not used.
            int timeoutConnection = 35 * 1000;
            HttpConnectionParams.setConnectionTimeout(httpParameters,
                    timeoutConnection);
            // Set the default socket timeout (SO_TIMEOUT)
            // in milliseconds which is the timeout for waiting for data.
            int timeoutSocket = 30 * 1000;
            HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);

完了していません。HttpClientとの関係はどうですか?
Sazzad Hissain Khan

1

Httpclient-android-4.3.5を使用してHttpClientインスタンスを作成できます。うまく機能します。

 SSLContext sslContext = SSLContexts.createSystemDefault();
        SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(
                sslContext,
                SSLConnectionSocketFactory.STRICT_HOSTNAME_VERIFIER);
                RequestConfig.Builder requestConfigBuilder = RequestConfig.custom().setCircularRedirectsAllowed(false).setConnectionRequestTimeout(30*1000).setConnectTimeout(30 * 1000).setMaxRedirects(10).setSocketTimeout(60 * 1000);
        CloseableHttpClient hc = HttpClients.custom().setSSLSocketFactory(sslsf).setDefaultRequestConfig(requestConfigBuilder.build()).build();

1

オプションは、SquareのOkHttpクライアントを使用することです。

ライブラリの依存関係を追加する

build.gradleに、次の行を含めます。

compile 'com.squareup.okhttp:okhttp:x.x.x'

x.x.x目的のライブラリバージョンはどこですか。

クライアントを設定する

たとえば、タイムアウトを60秒に設定する場合は、次のようにします。

final OkHttpClient okHttpClient = new OkHttpClient();
okHttpClient.setReadTimeout(60, TimeUnit.SECONDS);
okHttpClient.setConnectTimeout(60, TimeUnit.SECONDS);

ps:minSdkVersionが8より大きい場合は、を使用できますTimeUnit.MINUTES。だから、あなたは単に使うことができます:

okHttpClient.setReadTimeout(1, TimeUnit.MINUTES);
okHttpClient.setConnectTimeout(1, TimeUnit.MINUTES);

単位の詳細については、TimeUnitを参照してください。


現在のバージョンのOkHttpでは、タイムアウトを別の方法で設定する必要があります。https
thijsonline

1

を使用している場合はHttpURLConnection、次のsetConnectTimeout()説明に従って呼び出します

URL url = new URL(myurl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setConnectTimeout(CONNECT_TIMEOUT);

説明は、httpリクエストではなく、接続を確立するためのタイムアウトに似ていますか?
user2499800

0
public boolean isInternetWorking(){
    try {
        int timeOut = 5000;
        Socket socket = new Socket();
        SocketAddress socketAddress = new InetSocketAddress("8.8.8.8",53);
        socket.connect(socketAddress,timeOut);
        socket.close();
        return true;
    } catch (IOException e) {
        //silent
    }
    return false;
}

それはどのサーバーを表していますか?"8.8.8.8"、53
Junaed
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.