0

我正在将所有异常日志写入文本文件。

例如

pw= new PrintWriter(new FileWriter("EXCEPTION.txt", true));

try
{ 
    do something!! 
} catch (Exception e) {
    e.printStackTrace(pw);pw.flush();
}

但是,当有多个异常时,很难读取 EXCEPTION.txt 文件。我认为最好在每个例外之前包括时间。

如何才能做到这一点?

4

2 回答 2

6

您可以在将堆栈跟踪附加到文件之前简单地添加当前日期。此外,您可以格式化日期并写入。

catch (Exception e) {
    pw.write(new Date().toString()); // Adding the date
    pw.write(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); // Formatted date
    e.printStackTrace(pw);
    pw.flush();
}
于 2013-11-05T05:43:50.130 回答
0

你可以这样做:

DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
String timeNow = dateFormat.format(date); // pretty date
pw.write(timeNow + " " + e.getMessage()); // date concatenated with exception message
于 2013-11-05T05:43:02.343 回答