android 应用 捕获异常 重启应用

开发Android的时候难免会遇到程序异常,为了更好的知道程序的问题然后做出对应的记录或者改进处理是必不可少的。

一下是我处理的一个程序oom的收希望他可以自动重启,释放资源。当然这个只是解决燃眉之急,重要的还是处理好引起这个得原因。这里主要用的是PendingIntenthe和系统AlarmManager。不说了,直接贴代码。

/**
 * Created by Curry on 2017-3-4.
 */
public class CrashHandler<T> implements Thread.UncaughtExceptionHandler {
    public static final String TAG = "CrashHandler";

    //系统默认的UncaughtException处理类
    private Thread.UncaughtExceptionHandler mDefaultHandler;
    //CrashHandler实例
    private static CrashHandler INSTANCE = new CrashHandler();
    //程序的Context对象
    private Context mContext;
    //用来存储设备信息和异常信息
    private Map<String, String> infos = new HashMap<String, String>();
    final String OOM = "java.lang.OutOfMemoryError";
    //用于格式化日期,作为日志文件名的一部分
    Class<T> initClass;

    /**
     * 保证只有一个CrashHandler实例
     */
    private CrashHandler() {
    }

    /**
     * 获取CrashHandler实例 ,单例模式
     */
    public static CrashHandler getInstance() {
        return INSTANCE;
    }

    /**
     * 初始化
     *
     * @param context
     * @param initClass  跳转Activity
     */
    public void init(Context context,Class<T> initClass) {
        mContext = context;
        this.initClass = initClass;
        //获取系统默认的UncaughtException处理器
        mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler();
        //设置该CrashHandler为程序的默认处理器
        Thread.setDefaultUncaughtExceptionHandler(this);
    }

    /**
     * 当UncaughtException发生时会转入该函数来处理
     */
    @Override
    public void uncaughtException(Thread thread, Throwable ex) {
        if (ex.getClass().getName().equals(OOM)) {//判断如果抛出异常是OOM 执行我们自定的操作
            PendingIntent intent = PendingIntent.getActivity(mContext, 0,
                    new Intent(mContext, initClass), PendingIntent.FLAG_UPDATE_CURRENT);//设置默认启动的Activity
            //休眠两秒完成提示后退出
            new Thread() {
                @Override
                public void run() {
                    Looper.prepare();
                    Toast.makeText(mContext, "程序异常,正在重启.", Toast.LENGTH_LONG).show();
                    Looper.loop();
                }
            }.start();
            AlarmManager mgr = (AlarmManager) mContext.getSystemService(Context.ALARM_SERVICE);
            mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1000, intent);//设置重启时间

        } else {
            //其他异常处理  记录崩溃日志 保存数据等
        }
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            Log.e(TAG, "error : ", e);
        }
        System.exit(2);
    }

}

然后应用的时候需要在Application中初始化一下。

CrashHandler crashHandler = CrashHandler.getInstance();
crashHandler.init(getApplicationContext(),IndexActivity_.class);

捕获 Android 应用程序的异常重启应用程序,可以使用 Thread.UncaughtExceptionHandler 接口。该接口用于捕获捕获异常,并在捕获异常重启应用程序。 下面是一个简单的示例代码,用于设置应用程序的 UncaughtExceptionHandler: ``` public class MyApplication extends Application implements Thread.UncaughtExceptionHandler { @Override public void onCreate() { super.onCreate(); Thread.setDefaultUncaughtExceptionHandler(this); } @Override public void uncaughtException(Thread thread, Throwable ex) { // 捕获异常重启应用程序 Intent intent = new Intent(getApplicationContext(), MainActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK); PendingIntent pendingIntent = PendingIntent.getActivity(getBaseContext(), 0, intent, PendingIntent.FLAG_ONE_SHOT); AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, 1000, pendingIntent); System.exit(2); } } ``` 在上述示例代码中,我们创建了一个自定义的 Application 类,并实现 Thread.UncaughtExceptionHandler 接口。在 onCreate() 方法中,我们将当前线程的默认 UncaughtExceptionHandler 设置为该应用程序的 UncaughtExceptionHandler。 当应用程序中有未捕获异常时,会调用 uncaughtException() 方法。在该方法中,我们创建一个 Intent 对象,用于启动 MainActivity,然后使用 PendingIntent 将该 Intent 对象封装为一个闹钟事件,并在 1 秒钟后启动该事件。最后,我们调用 System.exit() 方法退出应用程序。 这样,当应用程序中发生未捕获异常时,应用程序将自动重启
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值