31

我需要在 Java 的文本文件中捕获异常。例如:

try {
  File f = new File("");
}
catch(FileNotFoundException f) {
  f.printStackTrace();  // instead of printing into console it should write into a text file    
  writePrintStackTrace(f.getMessage()); // this is my own method where I store f.getMessage() into a text file.
}

使用getMessage()有效,但它只显示错误消息。我想要printStackTrace()包括行号中的所有信息。

4

5 回答 5

49

它接受 aPrintStream作为参数;请参阅文档

File file = new File("test.log");
PrintStream ps = new PrintStream(file);
try {
    // something
} catch (Exception ex) {
    ex.printStackTrace(ps);
}
ps.close();

另请参见printStackTrace() 和 toString() 之间的区别

于 2012-08-21T10:37:32.997 回答
10

尝试扩展这个简单的例子:

catch (Exception e) {

    PrintWriter pw = new PrintWriter(new File("file.txt"));
    e.printStackTrace(pw);
    pw.close();
}

如您所见,printStackTrace()有重载。

于 2012-08-21T10:40:23.187 回答
4

System使用类设置错误/输出流。

PrintStream newErr;
PrintStream newOut;
// assign FileOutputStream to these two objects. And then it will be written on your files.
System.setErr(newErr);
System.setOut(newOut);
于 2012-08-21T10:47:58.553 回答
2

Throwable接口中有一个 API,getStackTrace()内部用于在控制台中打印printStackTrace()

http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Throwable.html#getStackTrace ()

StackTraceElement试试这个 API 来按顺序获取和打印这些元素。

于 2012-08-21T10:39:42.747 回答
0

希望以下示例对您有所帮助-

package com.kodehelp.javaio;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;

public class PrintStackTraceToFile {
   public static void main(String[] args) {
      PrintStream ps= null;
      try {
          ps = new PrintStream(new File("/sample.log"));
          throw new FileNotFoundException("Sample Exception");
      } catch (FileNotFoundException e) {
        e.printStackTrace(ps);
      }
    }
}

有关更多详细信息,请参阅此处的此链接

于 2017-07-09T14:43:40.440 回答