Home Java Java-get-example Java get Stack Trace as String



Java get Stack Trace as String
Posted on: November 1, 2008 at 12:00 AM
In this section, you will learn how to get the stack trace of an exception as a String.

Java get Stack Trace as String

     

In this section, you will learn how to get the stack trace of an exception as a String. We are providing you an example, which is throwing an IllegalArgumentException using Throwable class.

throwable.printStackTrace(printWriter)-  This method prints the throwable exception and its stack trace to the specified print writer.

writer.toString()- This method returns the return the stack trace of an exception as a String.

Here is the code of GetStackTrace.java

import java.io.*;
public class GetStackTraceAsString{

  public static String getStackTrace(Throwable throwable) {
  Writer writer = new StringWriter();
  PrintWriter printWriter = new PrintWriter(writer);
  throwable.printStackTrace(printWriter);
  return writer.toString();
  }
  public static void main (String[]args){
  final Throwable throwable = new IllegalArgumentException("Hello");
  System.out.println( getStackTrace(throwable) );
 }

Output will be displayed as:

Download Source Code

 

Related Tags for Java get Stack Trace as String:
cstringexceptionclassiostacklegalgettracevitracusingthisidrowtexexampletolearnexamargumenteareilthrowsectionceinasstamnttraceclthrowableillegalmehowhrproackxawhichxampsgalowaracracekisllmpleaexceptarstrwingssriringthstabablargumentexceptiongaillegalargumentexceptionpleplprono


Ask Questions?    Discuss: Java get Stack Trace as String  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.