如何确保数据已发布(发送)到远程服务器

时间:2013-01-03 14:55:05

标签: android post get

我有这个代码通过Android应用程序将数据发布到服务器。 因此,假设在将数据发布到服务器之前,连接已丢失(无线或3g) 或在发布期间连接丢失。 如何确保数据已发布到服务器? 我从服务器端实现响应作为反馈消息或响应,但你认为这已经足够吗?

另一种情况(在像银行这样的关键系统中)

假设我发送数据并且发布良好(例如插入数据库)但在获取响应期间发生错误! 从逻辑上讲,由于未收到响应,我将通知用户例如该过程未发布,必须再次发布!这是一个问题!!

那么实施或获得这种保险水平的最佳方式是什么?

try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(http://www.exampleof.the/page_that_wil_receive_the_data.php?data=example);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();           

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        //"ISO-8859-1,utf-8;q=0.7,*;q=0.7"
        //"iso-8859-1"
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "utf-8"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

    }

2 个答案:

答案 0 :(得分:2)

为每个帖子添加一个GUID,并返回一个返回GUID的响应以及事务的哈希值。跟踪服务器上的GUID。如果服务器的响应无效,请重试。如果收到具有相同GUID的事务,则丢弃该事务,但确认已收到该事务。

答案 1 :(得分:1)

我相信这两个问题,HTTP 200响应代码可确保您的请求在服务器中成功发布。