Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Get a String version of a stacktrace (See related posts)

// Get a String version of a stacktrace

    Throwable t = new Throwable();  // test code

    final Writer result = new StringWriter();
    final PrintWriter printWriter = new PrintWriter(result);
    t.printStackTrace(printWriter);
    result.toString();

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts