Easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?
|
|
|||||||||||||||||||||
|
|
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) |
|||||||||||||||||||||
|
|
Use Throwable.printStackTrace(PrintWriter pw) to send the stack trace to an appropriate writer.
|
|||||||||||||||
|
|
This should work:
|
||||
|
|
|
|||||||||||||||||
|
|
For me the cleanest and easiest way was:
|
|||
|
The following code allows you to get the entire stackTrace with a
|
||||
|
|
If You have the actual Throwable instance, google Guava can do it too: Throwables#getStackTraceAsString |
|||
|
|
|
A far easier way is to use this:
|
|||
|
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 |
||||
|
|
|
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. |
|||
|
|
Here is a version that is copy-pastable directly into code:
|
|||
|
|
