7

私のAndroidアプリでは、POSTリクエストを実行してサーバーからデータをプルしようとしています。

HttpURLConnectionApacheHttpClientはAndroidによって維持されなくなったため、クラスを使用してリクエストを行っています。

これが私がしていることです。

private boolean callWS() {
    try {

        // To avoid the bug in httpurlconnection prior froyo which
        // causes the getInputStream to return headers along with response
        if (Build.VERSION.SDK_INT < 8)
            System.setProperty("http.keepAlive", "false");

        mHttpResponseCode = 0;
        mErrorMessage = "";

        // Initialize connection
        URL connectURL = new URL(mServerUrl);

        HttpURLConnection conn = (HttpURLConnection) connectURL.openConnection();
        conn.setDoInput(true);
        conn.setDoOutput(true);
        conn.setUseCaches(false);
        conn.setInstanceFollowRedirects(true);
        conn.setReadTimeout(30000); 
        conn.setConnectTimeout(15000); 
        conn.setRequestMethod("POST");

        // Set some headers
        connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
        connection.setRequestProperty("Accept-Encoding", "deflate, gzip");
        connection.setRequestProperty("Content-Length", mParameters.length() + "");

        // Connect to host
        conn.connect();

        // Write parameters to connection
        OutputStreamWriter writer = new OutputStreamWriter(conn.getOutputStream());
        writer.write(mParameters);
        writer.flush();
        writer.close();

        // Wait for http response code
        mHttpResponseCode = conn.getResponseCode();

        // Read response from connection
        BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());
        ByteArrayBuffer baf = new ByteArrayBuffer(50);
        int read = 0;
        int bufSize = 1024;
        byte[] buffer = new byte[bufSize];

        while (true) {
            read = bis.read(buffer);
            if (read == -1)
                break;
            baf.append(buffer, 0, read);
        }

        // Decompress gzipped response
        if (conn.getHeaderField("Content-Encoding") != null && conn.getHeaderField("Content-Encoding").contains("gzip"))
            mResponseString = decompress(baf.toByteArray());
        else
            mResponseString = new String(baf.toByteArray());

        mResponse.setResponse(mResponseString);         
        isWSCallSuccessfull = true;
    } catch(UnknownHostException unknownHostException) {
        isWSCallSuccessfull = false;
        mErrorMessage = "Unknown host exception";
        unknownHostException.printStackTrace();
        mLogger.putStacktrace(unknownHostException);
    } catch(SocketException socketException) {
        isWSCallSuccessfull = false;
        mErrorMessage = "Socket Exception";
        socketException.printStackTrace();
        mLogger.putStacktrace(socketException);
    } catch(SocketTimeoutException socketTimeOutException) {
        isWSCallSuccessfull = false;
        mErrorMessage = "Socket Timeout Exception";
        socketTimeOutException.printStackTrace();
        mLogger.putStacktrace(socketTimeOutException);
    } catch(SSLException sslException) {
        isWSCallSuccessfull = false;
        mErrorMessage = "SSL Exception";
        sslException.printStackTrace();
        mLogger.putStacktrace(sslException);
    } catch(IOException ioException) {
        isWSCallSuccessfull = false;
        mErrorMessage = "IO Exception " + ioException.getMessage();
        ioException.printStackTrace();
        mLogger.putStacktrace(ioException);
    }

    mResponse.setHttpResponseCode(mHttpResponseCode);
    mResponse.setErrorMessage(mErrorMessage);
    mResponse.isWSCallSuccessful(isWSCallSuccessfull);

    return isWSCallSuccessfull;
}

これは、2.2を実行しているデバイスを除くすべてのデバイスで正常に機能します(2.1では試していない)。

2.2では、正常に動作します。しかし、コードのこの部分を30秒以上アイドル状態のままにしておくと、次回はhttp応答コードとして-1が返されます。

もう1つの注意点は、これはHTTPS URLでのみ発生し、HTTPURLでは発生しないことです。httpも使用したい場合があるため、HttpsURLConnectionクラスを使用したくありません。

接続を維持するためだけに接続を閉じているわけではありません。私は何が間違っているのですか?

4

1 に答える 1

0

Https と Http を同時に使用したいが、個別の接続を作成したくない場合、および「-1 問題」HttpsUrlConnectionを解決する場合は、次のアプローチを使用できます。

URLConnection conn = new URL(url).openConnection();
if (conn instanceof HttpsURLConnection) {
  // do stuff with cast to HttpsUrlConection
}
else {
  // do stuff with cast to HttpUrlConnection
}

この回答を参考にしました

于 2012-08-27T14:26:07.407 に答える