0

我想捕获未捕获的异常并将有关它们的报告发送到我的服务器。这就是我实现它的方式:

public final class MyApplication extends Application
{
    private static Context context;
    private static Handler mainHandler;
    private static boolean isDebug;

    @Override
    public void onCreate()
    {
        Thread.currentThread().setUncaughtExceptionHandler(new UncaughtExceptionHandler()
        {
            @Override
            public void uncaughtException(final Thread thread, final Throwable ex)
            {
                new Thread()
                {
                    @Override
                    public void run()
                    {
                        Looper.prepare();

                        ReportUtils.sendReport(thread, ex);
                        Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(thread, ex);
                        Looper.loop();
                        Looper.myLooper().quit();
                    }
                }.start();
            }
        });

        context = getApplicationContext();
        mainHandler = new Handler();
        isDebug = (0 != (getApplicationInfo().flags &= ApplicationInfo.FLAG_DEBUGGABLE));
    }

    @Override
    public void onTerminate(){}

    public static Context getAppContext()
    {
        return context;
    }

    public static boolean isDebugMode()
    {
        return isDebug;
    }

    public static Handler getMainHandler()
    {
        return mainHandler;
    }
}

它是实施它的正确方法吗?还有其他选择吗?

4

1 回答 1

0

与其自己做这件事,不如使用已经设置好的服务来做。

Acra 就是其中之一,它可以将您的崩溃报告上传到 Google Docs 电子表格。

Bugsense 是另一个。它有免费账户和付费账户。

Crashlytics 对 android 来说相当新,但完全免费,所以我推荐它。设置起来非常简单。

于 2013-07-25T01:30:36.090 回答