当前位置:   article > 正文

Android 解决因未捕获异常而崩溃的问题_throws remoteexception 捕捉不到 android

throws remoteexception 捕捉不到 android

在应用运行过程中,有很多异常可能会发生,一般情况我们会自己处理异常情况,但是也不能面面俱到,而我们希望在没有被捕获的异常发生的时候尽量做到不要让程序崩溃,并且需要在第一时间保存现场,必要时将log信息上传到server,以便在后期版本中修复。
如何处理未捕获的异常呢?
首先是定义一个类,我们取名为:CrashHandler,然后实现一个接口 java.lang.Thread.UncaughtExceptionHandler,要实现该接口里面的uncaughtException(Thread t, Throwable e)方法 ,在这个函数里面,我们可以做一些处理,例如将异常信息保存到sdcard上的某个位置,或者提示用户异常出现等等一些操作等。
代码:

/**
 * crash异常log捕获
 * 捕获到的log会保存到sdcard文件里
 * @author willkong
 */
public class CrashHandler implements UncaughtExceptionHandler {
    private static CrashHandler instance;
    private Context context;
    /** 系统默认的UncaughtException处理类 */
    private Thread.UncaughtExceptionHandler defaultHandler;

    // 单例
    public static CrashHandler getInstance() {
        if (instance == null) {
            instance = new CrashHandler();
        }
        return instance;
    }

    // 初始化
    public void init(Context context) {
        this.context = context;
        defaultHandler = Thread.getDefaultUncaughtExceptionHandler();
        Thread.setDefaultUncaughtExceptionHandler(this);
    }

    @Override
    public void uncaughtException(Thread arg0, Throwable arg1) {
        DownloadManager.getInstance().clearNotification();
        if (!handleException(arg1) && defaultHandler != null) {
            // 如果用户没有处理则让系统默认的异常处理器来处理
            defaultHandler.uncaughtException(arg0, arg1);
        } else {
            // 退出进程
            System.exit(16);
        }
    }

    // 处理异常
    private boolean handleException(Throwable ex) {
        if (ex == null) {
            return true;
        }
        ex.printStackTrace();
        //保存log信息到本地文件
        Methods.logCrashOnFile(context, ex);

        // 等待1s
        try {
            Thread.sleep(1000);
        } catch (Exception e) {
            e.printStackTrace();
        }

        // 关闭进程
        int nPid = android.os.Process.myPid();
        android.os.Process.killProcess(nPid);

        return true;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

其中Thread.setDefaultUncaughtExceptionHandler(this);是最关键的一行代码了。

用法:
其次,在Application的onCreate()方法中进行注册:

public class ExcApplication extends Application {
    @Override
    public void onCreate() {
        CrashHandler.getInstance().init(getApplicationContext());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/245361
推荐阅读
相关标签
  

闽ICP备14008679号