What is the easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?
Throwable.getStackTrace()
If you have the actual Throwable instance, Google Guava provides Throwables.getStackTraceAsString().
Throwable
Example:
String s = Throwables.getStackTraceAsString ( myException ) ;