11

我的应用程序在某处导致强制关闭,但我没有在我的 LogCat 中使用通常的(并且信息量很大的)堆栈跟踪获得 FATAL EXCEPTION,我只收到以下 4 行:

06-27 07:08:54.546: D/dalvikvm(14351): GC_FOR_MALLOC freed 9923 objects / 657416 bytes in 21ms
06-27 07:08:54.769: W/dalvikvm(14351): threadid=20: thread exiting with uncaught exception (group=0x4001d7f0)
06-27 07:08:54.796: W/dalvikvm(14351): threadid=21: thread exiting with uncaught exception (group=0x4001d7f0)
06-27 07:08:54.796: I/Process(14351): Sending signal. PID: 14351 SIG: 9

这是在调试模式下,LogCat 上没有应用任何过滤器!

  • 什么可能导致这种行为?
  • 有没有办法告诉是什么导致了这个异常?

更新:感谢下面的@assylias,我已经能够实现:

final UncaughtExceptionHandler subclass = Thread.currentThread().getUncaughtExceptionHandler();
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
    @Override
    public void uncaughtException(Thread paramThread, Throwable paramThrowable) {
    Log.getStackTraceString(paramThrowable);

    subclass.uncaughtException(paramThread, paramThrowable);
    }
});

这产生了这些添加的行:

06-27 08:24:47.105: D/dalvikvm(15475): GC_FOR_MALLOC freed 13865 objects / 1435952 bytes in 45ms
06-27 08:24:47.136: I/dalvikvm(15475): threadid=15: stack overflow on call to Ljava/lang/AbstractStringBuilder;.enlargeBuffer:VI
06-27 08:24:47.136: I/dalvikvm(15475):   method requires 28+20+20=68 bytes, fp is 0x45209338 (56 left)
06-27 08:24:47.140: I/dalvikvm(15475):   expanding stack end (0x45209300 to 0x45209000)
06-27 08:24:47.140: I/dalvikvm(15475): Shrank stack (to 0x45209300, curFrame is 0x4520937c)
06-27 08:24:47.159: I/dalvikvm(15475): threadid=16: stack overflow on call to Ljava/lang/AbstractStringBuilder;.enlargeBuffer:VI
06-27 08:24:47.159: I/dalvikvm(15475):   method requires 28+20+20=68 bytes, fp is 0x4520c338 (56 left)
06-27 08:24:47.167: I/dalvikvm(15475):   expanding stack end (0x4520c300 to 0x4520c000)
06-27 08:24:47.167: I/dalvikvm(15475): Shrank stack (to 0x4520c300, curFrame is 0x4520c37c)
06-27 08:24:47.175: I/dalvikvm(15475): threadid=17: stack overflow on call to Ljava/lang/AbstractStringBuilder;.enlargeBuffer:VI
06-27 08:24:47.175: I/dalvikvm(15475):   method requires 28+20+20=68 bytes, fp is 0x4520f338 (56 left)
06-27 08:24:47.175: I/dalvikvm(15475):   expanding stack end (0x4520f300 to 0x4520f000)
06-27 08:24:47.175: I/dalvikvm(15475): Shrank stack (to 0x4520f300, curFrame is 0x4520f37c)

这当然是更有用的信息,但现在我正在努力解决以下问题:

  • 尽管调用了subclass.uncaughtException(). 为什么?
  • 所有这些堆栈溢出的含义是什么?我能在我糟糕的 Android 测试设备上做些什么?
  • 我怎样才能知道我的代码中的哪个部分导致了这种情况?

更新: Log.getStackTraceString(paramThrowable);实际上并没有打印任何东西。我收到的额外打印来自伪造的subclass.uncaughtException(paramThread, paramThrowable); 记录完整堆栈跟踪的正确方法是使用Log.e(TAG, "uncaughtException", throwable)

现在剩下的唯一问题是如何重新抛出异常?只做一个throw paramThrowable

回答我的最后一个问题:Eclipse 不会让我在没有 try/catch 的情况下抛出,这让我明白我想要的不是重新抛出,而是killProcess(). 问题解决了。

4

3 回答 3

19

您可以在应用程序的开头设置默认的未捕获异常处理程序并在其中记录一些数据(下面的示例使用 java 记录器,但很容易转置到 Android):

private static void setDefaultUncaughtExceptionHandler() {
    try {
        Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {

            @Override
            public void uncaughtException(Thread t, Throwable e) {
                logger.error("Uncaught Exception detected in thread {}", t, e);
            }
        });
    } catch (SecurityException e) {
        logger.error("Could not set the Default Uncaught Exception Handler", e);
    }
}
于 2012-06-27T11:46:05.000 回答
2

这将是乏味的,但我会单步执行,直到它与调试器中断。那么你可以添加一个更一般的捕获

捕获(异常 e){ }

所有异常都从 Exception 扩展,因此可以帮助您进一步诊断您的问题。

还有一个想法,也许你的应用程序正在运行设备内存。由于 JVM 因内存错误而关闭,JVM 可能会在不告诉您的情况下杀死您的应用程序。

于 2012-06-27T11:42:29.123 回答
0

我知道这是旧的,但如果其他人想知道在处理未捕获的异常后正常退出:

final Thread.UncaughtExceptionHandler androidDefaultUEH = Thread.getDefaultUncaughtExceptionHandler();

Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
            @Override
            public void uncaughtException(final Thread thread, final Throwable ex) {
                // Handle exception however you want, then:
                androidDefaultUEH.uncaughtException(thread, ex);
            }
        });
于 2017-07-28T13:34:22.257 回答