Here you can find the source of getExceptionStackTrace(Exception exception)
public static String getExceptionStackTrace(Exception exception)
//package com.java2s; // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt public class Main { public static String getExceptionStackTrace(Exception exception) { java.io.OutputStream out = new java.io.ByteArrayOutputStream(); java.io.PrintStream ps = new java.io.PrintStream(out, true); exception.printStackTrace(ps);// ww w. j a va 2s .com String str = out.toString(); return str; } }