gpt4 book ai didi

安卓服务-数据连接丢失无法恢复

转载 作者:行者123 更新时间:2023-11-30 03:56:09 25 4
gpt4 key购买 nike

我的服务背景:它实现 LocationListener 并在 LocationManager 实例 (locMananager) 中注册更新:

manager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);

在 onLocationChanged 方法中,它使用当前位置调用名为 recordTrace 的方法,然后调用 getHttpResponse 将位置坐标发送到服务器。后一种方法如下:

    public InputStream getHttpResponse(String url, ArrayList<NameValuePair> params, int timeout) throws Exception {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, timeout);
httpClient.setParams(httpParams);
HttpPost post = new HttpPost(url);
if(params != null && !params.isEmpty()) {
try {
post.setEntity(new UrlEncodedFormEntity(params));
} catch (UnsupportedEncodingException e) {
Log.e(TAG, "HttpPost.setEntity Error: " + e.getMessage());
lastError = "błąd HTTP";
}
}
CookieStore store = new BasicCookieStore();
if(localCookies != null && localCookies.size() > 0) {
for(int i = 0; i < localCookies.size(); i++) {
store.addCookie(localCookies.get(i));
}
}
HttpContext context = new BasicHttpContext();
context.setAttribute(ClientContext.COOKIE_STORE, store);
HttpResponse response = null;
HttpEntity entity = null;
InputStream content = null;
try {
response = httpClient.execute(post, context);
store = (CookieStore) context.getAttribute(ClientContext.COOKIE_STORE);
List<Cookie> cookies = store.getCookies();
if(cookies != null && cookies.size() > 0) {
localCookies = new ArrayList<BasicClientCookie>();
for(Cookie cookie : cookies) {
localCookies.add((BasicClientCookie) cookie);
}
}
entity = response.getEntity();
content = entity.getContent();
return content;
} catch (ClientProtocolException e) {
throw e;
} catch (IOException e) {
throw e;
} catch (Exception e) {
throw e;
}
}

params 是一个带有准备好的数据的 NameValuePair,超时设置为 5000(5 秒)。 ArrayList localCookies 保存在成功登录之前、之后保存的 cookie(以保持 session )。

问题是:当我失去移动信号(即当我去地铁时)并恢复它时,我得到 IOException,这是无法恢复的,除非我重新启动手机。

如有任何帮助,我们将不胜感激。我快疯了,要秃头了!

谢谢,彼得。

编辑我做了一些研究。 getHttpResponse 方法被调用后,我利用了它返回的 InputStream,但最终没有关闭它。你认为这可能是问题所在吗?运算符(operator)是否可能断开连接然后建立一个新连接,而我的 InputStream 以某种方式“保持”以前的连接并产生数据传输问题?

我添加了一个 finally block ,现在 InputSTream 已关闭。然而,由于很难按需引起问题(它不会经常发生),我无法检查关闭流是否解决了它。

最佳答案

经过几天的测试,我似乎找到了解决方案。调用 2 个方法解决了问题:

  1. 关闭httpResponse.getEntity()

    返回的InputStream
  2. 通过执行httpClient.getConnectionManager().shutdown()

    关闭连接

完整请求和响应处理的代码 fragment :

String url = "www.someurl.com";
ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("login", "mylogin"));
params.add(new BasicNameValuePair("password", "mypassword"));
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
try {
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
InputStream content = httpEntity.getContent();
/*
* utilize content here...
*/
content.close(); // here's the point
httpClient.getConnectionManager().shutdown(); // the second important thing
}
catch (UnsupportedEncodingException e) {}
catch (ClientProtocolException e) {}
catch (IOException e) {}

我正在回答我自己的问题,因为我花了很多时间来搜索导致问题的原因,我认为我可以节省别人的时间。几天后,该应用程序仍在运行并且没有中断连接。

问候,

彼得。

关于安卓服务-数据连接丢失无法恢复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13322515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com