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

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


当前回答

你可以使用Apache的commons:

String fullStackTrace = org.apache.commons.lang3.exception.ExceptionUtils.getStackTrace(e);

其他回答

StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();

数组的最后一个元素表示堆栈的底部,这是序列中最近的方法调用。

A StackTraceElement has getClassName(), getFileName(), getLineNumber() and getMethodName().

循环遍历StackTraceElement并获得所需的结果。

for (StackTraceElement ste : stackTraceElements ) 
{
    //do your stuff here...
}

如果希望检查进程的当前调用堆栈,可以使用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

托尼,作为对公认答案的评论,给出了似乎是最好的答案,实际上回答了OP的问题:

Arrays.toString(Thread.currentThread().getStackTrace()).replace( ',', '\n' );

... OP没有询问如何从异常的堆栈跟踪中获取字符串。尽管我是Apache Commons的忠实粉丝,但当有像上面这么简单的东西时,使用外部库是没有逻辑理由的。

在Java 9中有一种新的方法:

public static void showTrace() {

  List<StackFrame> frames =
    StackWalker.getInstance( Option.RETAIN_CLASS_REFERENCE )
               .walk( stream  -> stream.collect( Collectors.toList() ) );

  for ( StackFrame stackFrame : frames )
    System.out.println( stackFrame );
}

你可以使用Apache的commons:

String fullStackTrace = org.apache.commons.lang3.exception.ExceptionUtils.getStackTrace(e);