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

   1  
   2      Throwable t = new Throwable();  // test code
   3  
   4      final Writer result = new StringWriter();
   5      final PrintWriter printWriter = new PrintWriter(result);
   6      t.printStackTrace(printWriter);
   7      result.toString();
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS