Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
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
3  
I don't understand why jqno's answer is better... – ripper234 Jan 22 '10 at 11:10
3  
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 '12 at 18:45
1  
@StijndeWitt - I see. Anyway, I think now amar's answer is better. – ripper234 Jan 31 '12 at 22:13
1  
Including a library, as amar suggests, for 3 lines of code (as in D. Wroblewski's answer) is completely absurd and a true sign of a novice coder. – stolsvik May 13 at 7:05

11 Answers

up vote 130 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)

share|improve this answer
3  
+1 for doing it in one line. – Steve Taylor Nov 25 '11 at 9:27
37  
One line that needs an external library... – Stijn de Witt Jan 31 '12 at 8:30
9  
@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 '12 at 10:10
3  
@StijndeWitt Commons Lang is pretty common. It's already present in most of my projects/proyects at work. – Hugo May 21 '12 at 14:54
2  
@Hugo thanks, was going to use the StringWriter to avoid adding a new library--turns out it's already a dependency of 3 of my dependencies. So to the rest, check if you have it already. – Nathanial Apr 10 at 0:53
show 5 more comments

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
share|improve this answer
11  
If you don't like to reinvent the wheel, see amar's answer. – Piotr Findeisen Apr 4 '11 at 14:19
158  
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 '12 at 8:31
6  
If you use one answer this year, make it this one. – alex Nov 27 '12 at 3:20
@PiotrFindeisenj Author of the answer did not reinvent the wheel. – Code Enthusiastic Mar 8 at 9:29

This should work:

StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
String exceptionAsString = sw.toString();
share|improve this answer
public String stackTraceToString(Throwable e) {
    StringBuilder sb = new StringBuilder();
    for (StackTraceElement element : e.getStackTrace()) {
        sb.append(element.toString());
        sb.append("\n");
    }
    return sb.toString();
}
share|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
1  
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
1  
Not sure, but I think this will not print the stack trace of the root cause exception. – apoorv020 May 25 '12 at 10:07
2  
Whatever you do, don't trim the trace. It has happened to me many, many times that I looked at a stack trace in the GlassFish logs that had the useful parts trimmed away. – cayhorstmann Sep 12 '12 at 22:25
show 1 more comment

For me the cleanest and easiest way was:

import java.util.Arrays;
Arrays.toString(e.getStackTrace());
share|improve this answer
4  
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 '12 at 4:03
2  
Great answer, thank you. I voted it up :) – xchiltonx Feb 18 at 22:54

The following code allows you to get the entire stackTrace with a String format, without using APIs like log4J or even java.util.Logger:

catch (Exception e) {
    StackTraceElement[] stack = e.getStackTrace();
    String exception = "";
    for (StackTraceElement s : stack) {
        exception = exception + s.toString() + "\n\t\t";
    }
    System.out.println(exception);
    // then you can send the exception string to a external file.
}
share|improve this answer
ya but its a bit bulky dont you think? in any reasonable sized project logging framework is a must so why bother – mzzzzb Oct 24 '12 at 17:19

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

share|improve this answer

A far easier way is to use this:

String stackTrace = Log.getStackTraceString(exception); 
share|improve this answer
Log is undefined. – Hugo May 21 '12 at 14:56
1  
sorry. actually that is an option for android. – Vicky Kapadia May 22 '12 at 7:20
2  
You should specify at least the import if it's not a well-know standard java class. – Hugo May 22 '12 at 14:14
@VickyKapadia: Improve your answer by stating where that class comes from. Or just remove it, because as it stands, it is .. a lie? – stolsvik May 13 at 7:04

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

share|improve this answer

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.

share|improve this answer
What you do mean is "Using any logging framework on the entire planet, in any version since their inception, if you include the exception, it will most probably be printed in the log file". Which is NOT what the OP asked for. – stolsvik May 13 at 7:00

Here is a version that is copy-pastable directly into code:

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

//Two lines of code to get the exception into a StringWriter
StringWriter sw = new StringWriter();
new Throwable().printStackTrace(new PrintWriter(sw));

//And to actually print it
logger.info("Current stack trace is:\n\t" + sw.toString());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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