Easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?

link|improve this question

71% accept rate
1  
As your question is written, jqno's answer is a better answer than Brian Agnew's. However, you accepted Brian's. Were you overly specific in asking how to "convert the result of Throwable.getStackTrace()"? If so, can you edit your question body to more accurately reflect what you were after? – toolbear Jan 21 '10 at 19:56
2  
I don't understand why jqno's answer is better... – ripper234 Jan 22 '10 at 11:10
1  
Because jqno's answer actually uses the Throwable.getStackTrace() method that you specified in your question, whereas Brian doesn't. He uses Throwable.printStackTrace() instead. – Stijn de Witt Jan 31 at 18:45
@StijndeWitt - I see. Anyway, I think now amar's answer is better. – ripper234 Jan 31 at 22:13
feedback

9 Answers

up vote 59 down vote accepted

One can use the following method to convert an Exception stack trace to String. This class is available in Apache commons-lang-2.2.jar

org.apache.commons.lang.exception.ExceptionUtils.getStackTrace(Throwable)

link|improve this answer
Link for updated 3.0.1 version: commons.apache.org/lang/api-3.0.1/org/apache/commons/lang3/… – tommy chheng Oct 25 '11 at 16:29
2  
+1 for doing it in one line. – Steve Taylor Nov 25 '11 at 9:27
2  
One line that needs an external library... – Stijn de Witt Jan 31 at 8:30
1  
@Stijn - to be fair (I wrote the current highest voted answer below) it's worth looking at commons-lang for a lot more functionality – Brian Agnew Jan 31 at 10:10
show 1 more comment
feedback

Use Throwable.printStackTrace(PrintWriter pw) to send the stack trace to an appropriate writer.

StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
t.printStackTrace(pw);
sw.toString(); // stack trace as a string
link|improve this answer
8  
If you don't like to reinvent the wheel, see amar's answer. – Piotr Findeisen Apr 4 '11 at 14:19
21  
If you don't like including an external library for something as small and simple as this, use this answer. – Stijn de Witt Jan 31 at 8:31
feedback

This should work:

StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String exceptionAsStrting = sw.toString();
link|improve this answer
feedback
public String stackTraceToString(Throwable e) {
    StringBuilder sb = new StringBuilder();
    for (StackTraceElement element : e.getStackTrace()) {
        sb.append(element.toString());
        sb.append("\n");
    }
    return sb.toString();
}
link|improve this answer
This is good if you just want the stack trace (as the OP asks) – Peter Lawrey Jul 19 '09 at 11:48
I'd go with an extension of this approach if you want to trim the trace, e.g. pass a maxLines parameter and only add that many lines to the trace – Rich Seller Jul 19 '09 at 12:28
The Parentheses after e.getStackTrace are missing. public static String stackTraceToString(Exception e) { StringBuilder sb = new StringBuilder(); for (StackTraceElement element : e.getStackTrace()) { sb.append(element.toString()); sb.append("<br />"); } return sb.toString(); } – rlc Oct 20 '11 at 8:59
feedback

For me the cleanest and easiest way was:

import java.util.Arrays;
Arrays.toString(e.getStackTrace());
link|improve this answer
2  
The code is clean, but the output is not. You have to do a .replaceAll(", ", "\n") in the end. However you lose the indentation that printStackTrace proposes. – fury Jan 9 at 4:03
feedback

If You have the actual Throwable instance, google Guava can do it too:

Throwables#getStackTraceAsString

http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/base/Throwables.html#getStackTraceAsString%28java.lang.Throwable%29

link|improve this answer
feedback

Assuming you don't care about nested exceptions

import java.io.PrintWriter;
import java.io.StringWriter;

public class StackTraceUtils {
    public static String stackTraceToString(StackTraceElement[] stackTrace) {
        StringWriter sw = new StringWriter();
        printStackTrace(stackTrace, new PrintWriter(sw));
        return sw.toString();
    }
    public static void printStackTrace(StackTraceElement[] stackTrace, PrintWriter pw) {
        for(StackTraceElement stackTraceEl : stackTrace) {
            pw.println(stackTraceEl);
        }
    }
}

It's also useful when you want to print the current thread stack trace without creating instance of Throwable

link|improve this answer
feedback

Using slf4j 1.6 or greater,

try {
 ... throw an exception
}
catch (Excepion e) {
  logger.error("Error occured", e);
}

This will log the error message and stacktrace. The key is to have an exception as the last parameter.

link|improve this answer
feedback

A far easier way is to use this:

String stackTrace = Log.getStackTraceString(exception); 
link|improve this answer
Log is undefined. – Hugo May 21 at 14:56
sorry. actually that is an option for android. – Vicky Kapadia 2 days ago
You should specify at least the import if it's not a well-know standard java class. – Hugo 2 days ago
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.