web-dev-qa-db-ja.com

printStackTraceを文字列に保存する方法

e.printStackTrace()を取得してString変数に格納するにはどうすればよいですか?プログラムの後半でe.printStackTrace()によって生成された文字列を使用します。

私はまだJavaが初めてなので、解決策になると思うStringWriterにあまり詳しくありません。または、他にアイデアがあれば教えてください。ありがとう

200
ace

の線に沿って何か

StringWriter errors = new StringWriter();
ex.printStackTrace(new PrintWriter(errors));
return errors.toString();

必要なものにならないでください。

関連ドキュメント:

420
Zach L

Guava でこれを簡単にします Throwables.getStackTraceAsString(Throwable)

Exception e = ...
String stackTrace = Throwables.getStackTraceAsString(e);

内部的には、これは@Zach Lが示唆することを行います。

71
ColinD

グアバに沿って、Apache Commons LangはExceptionUtils.getFullStackTraceorg.Apache.commons.lang.exceptionを持っています。 前の回答から StackOverflowで。

14
Mihai Danila

Apache Commons 3クラスorg.Apache.commons.lang3.exception.ExceptionUtilsExceptionUtils.getStackTrace(Throwable t);を使用できます。

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

ExceptionUtils.getStackTrace(Throwable t)

コード例:

try {

  // your code here

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

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) );
  }
} 
13
user405725
StackTraceElement[] stack = new Exception().getStackTrace();
String theTrace = "";
for(StackTraceElement line : stack)
{
   theTrace += line.toString();
}
6
Jonathon Faust

Apache commons-lang3 libを使用します

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

//...

String[] ss = ExceptionUtils.getRootCauseStackTrace(e);
logger.error(StringUtils.join(ss, System.lineSeparator()));
2
Eric Wang
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;
}
1
Stan Towianski