我如何在Java中获得当前堆栈跟踪,就像在。net中,你可以做environment。stacktrace ?

我找到了Thread.dumpStack(),但这不是我想要的-我想要得到堆栈跟踪,而不是打印出来。


当前回答

在android上,一个更简单的方法是使用这个:

import android.util.Log;
String stackTrace = Log.getStackTraceString(exception); 

其他回答

如果希望检查进程的当前调用堆栈,可以使用jstack实用程序。

Usage:
    jstack [-l] <pid>
        (to connect to running process)
    jstack -F [-m] [-l] <pid>
        (to connect to a hung process)
    jstack [-m] [-l] <executable> <core>
        (to connect to a core file)
    jstack [-m] [-l] [server_id@]<remote server IP or hostname>
        (to connect to a remote debug server)

Options:
    -F  to force a thread dump. Use when jstack <pid> does not respond (process is hung)
    -m  to print both java and native frames (mixed mode)
    -l  long listing. Prints additional information about locks
    -h or -help to print this help message
Thread.currentThread().getStackTrace();

从JDK1.5开始可用。

对于旧版本,你可以重定向exception.printStackTrace()到StringWriter():

StringWriter sw = new StringWriter();
new Throwable("").printStackTrace(new PrintWriter(sw));
String stackTrace = sw.toString();

我建议

  Thread.dumpStack()

是一种更简单的方法,并且在可能根本没有问题的情况下,它的优点是不实际构造异常或可抛出的异常,而且更切题。

你可以使用Thread.currentThread(). getstacktrace()。

它返回一个stacktraceelement数组,表示程序的当前堆栈跟踪。

用番石榴串:

Throwables.getStackTraceAsString(new Throwable())