zoukankan      html  css  js  c++  java
  • android.os.NetworkOnMainThreadException问题

    最近测试程序在手机端测试正常,在联网的时候总会抛出android.os.NetworkOnMainThreadException这个异常

    也就是说不能在主线程中执行联网操作

    在4.0中,访问网络不能在主程序中进行,有两个方法可以解决,一个是在主程序中增加:

    StrictMode is a developer tool which detects things you might be doing by accident and brings them to your attention so you can fix them.

    // 详见StrictMode文档

    StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()

    .detectDiskReads()

    .detectDiskWrites()

    .detectNetwork()   // or .detectAll() for all detectable problems

    .penaltyLog()

    .build());

    StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()

    .detectLeakedSqlLiteObjects()

    .detectLeakedClosableObjects()

    .penaltyLog()

    .penaltyDeath()

    .build());

    另一种是启动线程执行下载任务:

           public void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);

    setContentView(R.layout.main);

            // 启动线程执行下载任务

    new Thread(downloadRun).start();

    }

    /**

    * 下载线程

    */

    Runnable downloadRun = new Runnable(){

    @Override

    public void run() {

    // TODO Auto-generated method stub

    updateListView();

    }

    };

  • 相关阅读:
    GitLab CI/CD的官译【原】
    Gearman介绍、原理分析、实践改进
    Golang逃逸分析
    Go 程序是怎样跑起来的
    分布式系统的常见玩法
    开发更高可用、高质量的服务的一些建议
    理解 Kubernetes 的亲和性调度
    服务发现对比:Zookeeper vs etcd vs Consul
    探索etcd,Zookeeper和Consul一致键值数据存储的性能
    CentOS 7 安装无线驱动
  • 原文地址:https://www.cnblogs.com/yejiurui/p/2984841.html
Copyright © 2011-2022 走看看