devxlogo

Obtain Exception’s Stack Trace as String

Obtain Exception’s Stack Trace as String

It is sometimes necessary to get the exception’s stack trace as String (for logging, reporting, etc.). Unfortunately, the Exception class itself provides only the getMessage() method which does not include the stack trace, and the printStackTrace() methods, which do not return anything.

Here’s routine that I use to obtain exception’s stack trace as String:

   import java.io.*;  public static String getStackTrace(Throwable err) {    StringWriter strWrite = new StringWriter();    PrintWriter prtWrite = new PrintWriter(strWrite);    err.printStackTrace(prtWrite);    StringBuffer temp = strWrite.getBuffer();    String str = temp.toString();    return str;  }

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist