Easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?
| |||||||||||||||
feedback
|
|
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) | |||||||||||||||||
feedback
|
|
Use Throwable.printStackTrace(PrintWriter pw) to send the stack trace to an appropriate writer.
| |||||||||
feedback
|
|
This should work:
| |||
|
feedback
|
| |||||||
feedback
|
|
For me the cleanest and easiest way was:
| |||||
feedback
|
|
If You have the actual Throwable instance, google Guava can do it too: Throwables#getStackTraceAsString | |||
|
feedback
|
|
Assuming you don't care about nested exceptions
It's also useful when you want to print the current thread stack trace without creating instance of | ||||
|
feedback
|
|
Using slf4j 1.6 or greater,
This will log the error message and stacktrace. The key is to have an exception as the last parameter. | |||
|
feedback
|
|
A far easier way is to use this:
| |||||||
feedback
|