简体   繁体   English

如何在 Java 中获取当前堆栈跟踪?

[英]How can I get the current stack trace in Java?

How do I get the current stack trace in Java, like how in .NET you can do Environment.StackTrace ?如何在 Java 中获取当前堆栈跟踪,例如在 .NET 中如何执行Environment.StackTrace

I found Thread.dumpStack() but it is not what I want - I want to get the stack trace back, not print it out.我找到Thread.dumpStack()但这不是我想要的——我想取回堆栈跟踪,而不是打印出来。

You can use Thread.currentThread().getStackTrace() .您可以使用Thread.currentThread().getStackTrace()

That returns an array of StackTraceElement s that represent the current stack trace of a program.这将返回一个StackTraceElement数组,这些数组表示程序的当前堆栈跟踪。

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

is fine if you don't care what the first element of the stack is.如果您不在乎堆栈的第一个元素是什么,那很好。

StackTraceElement[] st = new Throwable().getStackTrace();

will have a defined position for your current method, if that matters.如果这很重要,将为您当前的方法定义一个位置。

for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
    System.out.println(ste);
}
Thread.currentThread().getStackTrace();

is available since JDK1.5.从JDK1.5开始可用。

For an older version, you can redirect exception.printStackTrace() to a StringWriter() :对于旧版本,您可以将exception.printStackTrace()重定向到StringWriter()

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

Tony, as a comment to the accepted answer, has given what seems to be the best answer which actually answers the OP's question :托尼作为对已接受答案的评论,给出了似乎是实际回答OP 问题的最佳答案:

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

... the OP did NOT ask how to get a String from the stack trace from an Exception . ... OP没有询问如何从Exception的堆栈跟踪中获取String And although I'm a huge fan of Apache Commons, when there is something as simple as the above there is no logical reason to use an outside library.尽管我是 Apache Commons 的忠实粉丝,但当有像上面这样简单的东西时,没有合乎逻辑的理由使用外部库。

您可以为此使用 Apache 的公共资源:

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

On android a far easier way is to use this:在 android 上一个更简单的方法是使用这个:

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

Another solution (only 35 31 characters):另一种解决方案(仅35 31 个字符):

new Exception().printStackTrace();   
new Error().printStackTrace();

To get the stack trace of all threads you can either use the jstack utility, JConsole or send a kill -quit signal (on a Posix operating system).要获取所有线程的堆栈跟踪,您可以使用 jstack 实用程序 JConsole 或发送 kill -quit 信号(在 Posix 操作系统上)。

However, if you want to do this programmatically you could try using ThreadMXBean:但是,如果您想以编程方式执行此操作,您可以尝试使用 ThreadMXBean:

ThreadMXBean bean = ManagementFactory.getThreadMXBean();
ThreadInfo[] infos = bean.dumpAllThreads(true, true);

for (ThreadInfo info : infos) {
  StackTraceElement[] elems = info.getStackTrace();
  // Print out elements, etc.
}

As mentioned, if you only want the stack trace of the current thread it's a lot easier - Just use Thread.currentThread().getStackTrace() ;如前所述,如果您只想要当前线程的堆栈跟踪,那就容易多了 - 只需使用Thread.currentThread().getStackTrace()

傻我,这是Thread.currentThread().getStackTrace();

In Java 9 there is a new way:在 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 );
}

Getting stacktrace:获取堆栈跟踪:

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

Printing stacktrace (JAVA 8+):打印堆栈跟踪(JAVA 8+):

Arrays.asList(ste).forEach(System.out::println);

Printing stacktrage (JAVA 7):打印堆栈(JAVA 7):

StringBuilder sb = new StringBuilder();

for (StackTraceElement st : ste) {
    sb.append(st.toString() + System.lineSeparator());
}
System.out.println(sb);

I suggest that我建议

  Thread.dumpStack()

is an easier way and has the advantage of not actually constructing an exception or throwable when there may not be a problem at all, and is considerably more to the point.是一种更简单的方法,并且具有在可能根本没有问题时实际上不构造异常或可抛出的优点,并且更重要。

用番石榴串起来:

Throwables.getStackTraceAsString(new Throwable())

I have a utility method that returns a string with the stacktrace:我有一个实用方法,它返回一个带有堆栈跟踪的字符串:

static String getStackTrace(Throwable t) {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw, true);
    t.printStackTrace(pw);
    pw.flush();
    sw.flush();
    return sw.toString();
}

And just logit like...就像logit一样...

... 
catch (FileNotFoundException e) {
    logger.config(getStackTrace(e));
}
try {
}
catch(Exception e) {
    StackTraceElement[] traceElements = e.getStackTrace();
    //...
}

or或者

Thread.currentThread().getStackTrace()

Maybe you could try this:也许你可以试试这个:

catch(Exception e)
{
    StringWriter writer = new StringWriter();
    PrintWriter pw = new PrintWriter(writer);
    e.printStackTrace(pw);
    String errorDetail = writer.toString();
}

The string 'errorDetail' contains the stacktrace.字符串 'errorDetail' 包含堆栈跟踪。

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

The last element of the array represents the bottom of the stack, which is the least recent method invocation in the sequence.数组的最后一个元素表示堆栈的底部,它是序列中最近的方法调用。

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

loop through StackTraceElement and get your desired result.循环通过 StackTraceElement 并获得您想要的结果。

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

You can use jstack utility if you want to check the current call stack of your process.如果要检查进程的当前调用堆栈,可以使用 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

I used answers from above and added formatting我使用了上面的答案并添加了格式

public final class DebugUtil {

    private static final String SEPARATOR = "\n";

    private DebugUtil() {
    }

    public static String formatStackTrace(StackTraceElement[] stackTrace) {
        StringBuilder buffer = new StringBuilder();
        for (StackTraceElement element : stackTrace) {
            buffer.append(element).append(SEPARATOR);
        }
        return buffer.toString();
    }

    public static String formatCurrentStacktrace() {
        StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
        return formatStackTrace(stackTrace);
    }
}

For people, who just want to get the current stacktrace to their logs, I would go with:对于只想将当前堆栈跟踪记录到他们的日志的人,我会选择:

getLogger().debug("Message", new Throwable());

Cheers干杯

This is an old post, but here is my solution :这是一篇旧帖子,但这是我的解决方案:

Thread.currentThread().dumpStack();

More info and more methods there : http://javarevisited.blogspot.fr/2013/04/how-to-get-current-stack-trace-in-java-thread.html更多信息和更多方法:http: //javarevisited.blogspot.fr/2013/04/how-to-get-current-stack-trace-in-java-thread.html

System.out.println(Arrays.toString(Thread.currentThread().getStackTrace()));

这将帮助您打印没有循环的堆栈跟踪。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM