IMPRIMIR STACK TRACE
Posted: miércoles, 9 de febrero de 2011 by Skuarch in Etiquetas: convertir una exception en string, ejemplo, java, parsear stacktrace a string, print stack trace to string
0
Para poder hacer esto puedes seguir este codigo
public String stack2string(Exception e) {
StringWriter sw = null;
PrintWriter pw = null;
try {
sw = new StringWriter();
pw = new PrintWriter(sw);
e.printStackTrace(pw);
return "\r\n" + sw.toString() + "\r\n";
}
catch(Exception e2) {
e.printStackTrace();
}
}