如何获得e.p printstacktrace()并将其存储为字符串变量? 我想稍后在程序中使用e.printStackTrace()生成的字符串。

我对Java还是个新手,所以我对StringWriter不太熟悉 将是解决方案。或者如果你有任何其他想法,请告诉我。谢谢


当前回答

您可以使用ExceptionUtils。getStackTrace (Throwable t);从Apache Commons 3类org.apache.commons.lang3.exception.ExceptionUtils。

http://commons.apache.org/proper/commons-lang/

ExceptionUtils。getStackTrace (Throwable t)

代码示例:

try {

  // your code here

} catch(Exception e) {
  String s = ExceptionUtils.getStackTrace(e);
}

其他回答

StackTraceElement[] stack = new Exception().getStackTrace();
String theTrace = "";
for(StackTraceElement line : stack)
{
   theTrace += line.toString();
}

使用apache commons-lang3库

import org.apache.commons.lang3.exception.ExceptionUtils;

//...

String[] ss = ExceptionUtils.getRootCauseStackTrace(e);
logger.error(StringUtils.join(ss, System.lineSeparator()));
call:  getStackTraceAsString(sqlEx)

public String getStackTraceAsString(Exception exc)  
{  
String stackTrace = "*** Error in getStackTraceAsString()";

ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream ps = new PrintStream( baos );
exc.printStackTrace(ps);
try {
    stackTrace = baos.toString( "UTF8" ); // charsetName e.g. ISO-8859-1
    } 
catch( UnsupportedEncodingException ex )
    {
    Logger.getLogger(sss.class.getName()).log(Level.SEVERE, null, ex);
    }
ps.close();
try {
    baos.close();
    } 
catch( IOException ex )
    {
    Logger.getLogger(sss.class.getName()).log(Level.SEVERE, null, ex);
    }
return stackTrace;
}

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