欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android异常 java.lang.IllegalStateException解决方法

时间:2022-01-15 10:31:56|栏目:Android代码|点击:

Android异常详情介绍

这种异常我遇到以下两种情况:
1. java.lang.IllegalStateException: No wrapped connection.
2.java.lang.IllegalStateException: Adapter is detached.

原因:

1.单线程一次执行一个请求可以正常执行,如果使用多线程,同时执行多个请求时就会出现连接超时.
2.HttpConnection没有连接池的概念,多少次请求就会建立多少个IO,在访问量巨大的情况下服务器的IO可能会耗尽。
3.通常是因为HttpClient访问单一实例的不同的线程或未关闭InputStream的httpresponse。

解决方案:获得httpclient线程安全

解决前代码:

public HttpClient httpClient = new DefaultHttpClient();
 public void postNoResult(final Context context, final String url, final Map<String, String> maps, final String show) {
  new Thread() {
   @Override
   public void run() {
    try {
     HttpPost post = new HttpPost(url);
     List<NameValuePair> params = new ArrayList<NameValuePair>();
     for (String key : maps.keySet()) {
      params.add(new BasicNameValuePair(key, maps.get(key)));
     }
     post.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
     HttpResponse response = httpClient.execute(post);//报错位置
     if (response.getStatusLine().getStatusCode() == 200) {
      Looper.prepare();
      String r = EntityUtils.toString(response.getEntity());
      ToastUtil.print_log(r);
      if (show != null) {
       ToastUtil.show(context, show);
      }
      Looper.loop();}
    } catch (UnsupportedEncodingException e) {
     e.printStackTrace();
    } catch (ClientProtocolException e) {
     e.printStackTrace();
    } catch (IOException e) {
     e.printStackTrace();
    }}}.start();
 }

解决后代码:

public HttpClient httpClient = getThreadSafeClient();//获得httpclient线程安全。
public static DefaultHttpClient getThreadSafeClient() {
//获得httpclient线程安全的方法
  DefaultHttpClient client = new DefaultHttpClient();
  ClientConnectionManager mgr = client.getConnectionManager();
  HttpParams params = client.getParams();
  client = new DefaultHttpClient(new ThreadSafeClientConnManager(params,
    mgr.getSchemeRegistry()), params);
  return client;
 }

  public void postNoResult(final Context context, final String url, final Map<String, String> maps, final String show) {
  new Thread() {
   @Override
   public void run() {
    try {
     HttpPost post = new HttpPost(url);
     List<NameValuePair> params = new ArrayList<NameValuePair>();
     for (String key : maps.keySet()) {
      params.add(new BasicNameValuePair(key, maps.get(key)));
     }
     post.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
     HttpResponse response = httpClient.execute(post);//报错位置
     if (response.getStatusLine().getStatusCode() == 200) {
      Looper.prepare();
      String r = EntityUtils.toString(response.getEntity());
      ToastUtil.print_log(r);
      if (show != null) {
       ToastUtil.show(context, show);
      }
      Looper.loop();}
    } catch (UnsupportedEncodingException e) {
     e.printStackTrace();
    } catch (ClientProtocolException e) {
     e.printStackTrace();
    } catch (IOException e) {
     e.printStackTrace();
    }}}.start();
 }

上一篇:Android使用ViewPager实现左右无限滑动

栏    目:Android代码

下一篇:Flutter实现矩形取色器的封装

本文标题:Android异常 java.lang.IllegalStateException解决方法

本文地址:http://www.codeinn.net/misctech/190265.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有