Android 继续尝试 POST 直到它通过

Android keep trying POST until it goes through

我有一个 POST 消息,在给定的情况下我绝对必须在 Android 上发送,我希望它继续尝试直到它完成。我的理解是设置:

urlConnection.setConnectTimeout(0);

会一直尝试连接直到它通过,但实际发生的是 try 块失败,而是抛出 UnknownHostException:

private class SendAlert extends AsyncTask<String, String, String> { 
protected String doInBackground(String... strings) {
      Log.d(TAG, "sendAlarm: sending alarm");
      String stringUrl = createUri();
      HttpsURLConnection urlConnection = null;
      BufferedReader reader = null;

      String postData = "";
      Log.d(TAG, "sendAlarm: apikey: " + apiKey);
         try{
            Log.d(TAG, "sendAlarm: trying");
            URL finalURL = new URL(stringUrl);              
            urlConnection = (HttpsURLConnection)finalURL.openConnection();
            urlConnection.setReadTimeout(10000);
            urlConnection.setConnectTimeout(0);
            urlConnection.setRequestProperty("Content-Type", "application/json;charset=UTF-8");
            urlConnection.setRequestProperty("Accept","application/json");
            urlConnection.setRequestProperty("x-api-key",apiKey);
            urlConnection.setRequestMethod("POST");
            urlConnection.setDoInput(true);
            urlConnection.setDoOutput(true);

            int responseCode = urlConnection.getResponseCode();
            Log.d(TAG, "doInBackground: response code = " + responseCode);

        }catch (MalformedURLException e) {
            e.printStackTrace();
            Log.d(TAG, "doInBackground: error 1 " + e.toString());
        }catch(UnknownHostException e){
            Log.d(TAG, "doInBackground: e: " + e);
            Log.d(TAG, "doInBackground: retrying");
        }          
        
        catch(Exception e){
            Log.d(TAG, "doInBackground: error 2 " + e.toString());
        }

想知道在 Android 上设置 post 消息的最佳方法是,继续尝试连接直到它通过,即使 phone 处于飞行模式5 小时。

编辑:@user3252344 下面的回答,直接在 AyncTask 的 catch 块中再次调用该函数是否有任何问题:

catch(UnknownHostException e){
            Log.d(TAG, "doInBackground: e: " + e);
            Log.d(TAG, "doInBackground: retrying");
            SendAlarm sendAlarm = new SendAlarm;
            sendAlarm.execute();
        }     

将连接超时设置为0将意味着它不会超时,但如果连接失败它仍然不会处理它。我猜你得到一个 UnknownHostException 因为它无法解析 url 因为它无法到达 DNS 服务器。

我建议您设置一个合理的连接超时时间,如果发生超时异常则捕获并重新运行。

final int READ_TIMEOUT = 500; // Timeout
final int RETRY_MS = 2000; //Retry every 2 seconds
final Handler handler = new Handler();

Runnable myUrlCall = () -> {
    try {
        //Make things
        urlConnect.setReadTimeout(READ_TIMEOUT);
        //Make the URL call, do response
    } catch (SocketTimeoutException e) {
        handler.postDelayed(myUrlCall, RETRY_MS);
    } catch (/* other unintended errors*/ e) {
        //Log the error or alert the user
    }
};

handler.post(myUrlCall);

可能更好的主意:使用 Android 设置在拨打电话之前检查是否有互联网。如果没有互联网,请使用更长的延迟时间。 Something like this would be the code you're looking for.