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

About this user

Douglas Wyatt

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Get a String version of a stacktrace

// 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();
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS