如何获得e.p printstacktrace()并将其存储为字符串变量? 我想稍后在程序中使用e.printStackTrace()生成的字符串。
我对Java还是个新手,所以我对StringWriter不太熟悉 将是解决方案。或者如果你有任何其他想法,请告诉我。谢谢
如何获得e.p printstacktrace()并将其存储为字符串变量? 我想稍后在程序中使用e.printStackTrace()生成的字符串。
我对Java还是个新手,所以我对StringWriter不太熟悉 将是解决方案。或者如果你有任何其他想法,请告诉我。谢谢
当前回答
你必须使用getStackTrace()方法而不是printStackTrace()。这里有一个很好的例子:
import java.io.*;
/**
* Simple utilities to return the stack trace of an
* exception as a String.
*/
public final class StackTraceUtil {
public static String getStackTrace(Throwable aThrowable) {
final Writer result = new StringWriter();
final PrintWriter printWriter = new PrintWriter(result);
aThrowable.printStackTrace(printWriter);
return result.toString();
}
/**
* Defines a custom format for the stack trace as String.
*/
public static String getCustomStackTrace(Throwable aThrowable) {
//add the class name and any message passed to constructor
final StringBuilder result = new StringBuilder( "BOO-BOO: " );
result.append(aThrowable.toString());
final String NEW_LINE = System.getProperty("line.separator");
result.append(NEW_LINE);
//add each element of the stack trace
for (StackTraceElement element : aThrowable.getStackTrace() ){
result.append( element );
result.append( NEW_LINE );
}
return result.toString();
}
/** Demonstrate output. */
public static void main (String... aArguments){
final Throwable throwable = new IllegalArgumentException("Blah");
System.out.println( getStackTrace(throwable) );
System.out.println( getCustomStackTrace(throwable) );
}
}
其他回答
沿着Guava的路线,Apache Commons Lang有ExceptionUtils。在org.apache.commons.lang.exception中获取fullstacktrace。来自StackOverflow上的先前答案。
Guava通过Throwables.getStackTraceAsString(Throwable)使这变得容易:
Exception e = ...
String stackTrace = Throwables.getStackTraceAsString(e);
在内部,这是@Zach L建议的。
类似于
StringWriter errors = new StringWriter();
ex.printStackTrace(new PrintWriter(errors));
return errors.toString();
这正是你所需要的。
相关文档:
StringWriter PrintWriter Throwable
使用apache commons-lang3库
import org.apache.commons.lang3.exception.ExceptionUtils;
//...
String[] ss = ExceptionUtils.getRootCauseStackTrace(e);
logger.error(StringUtils.join(ss, System.lineSeparator()));
你必须使用getStackTrace()方法而不是printStackTrace()。这里有一个很好的例子:
import java.io.*;
/**
* Simple utilities to return the stack trace of an
* exception as a String.
*/
public final class StackTraceUtil {
public static String getStackTrace(Throwable aThrowable) {
final Writer result = new StringWriter();
final PrintWriter printWriter = new PrintWriter(result);
aThrowable.printStackTrace(printWriter);
return result.toString();
}
/**
* Defines a custom format for the stack trace as String.
*/
public static String getCustomStackTrace(Throwable aThrowable) {
//add the class name and any message passed to constructor
final StringBuilder result = new StringBuilder( "BOO-BOO: " );
result.append(aThrowable.toString());
final String NEW_LINE = System.getProperty("line.separator");
result.append(NEW_LINE);
//add each element of the stack trace
for (StackTraceElement element : aThrowable.getStackTrace() ){
result.append( element );
result.append( NEW_LINE );
}
return result.toString();
}
/** Demonstrate output. */
public static void main (String... aArguments){
final Throwable throwable = new IllegalArgumentException("Blah");
System.out.println( getStackTrace(throwable) );
System.out.println( getCustomStackTrace(throwable) );
}
}