import java.io.*;
import java.text.SimpleDateFormat;
import java.util.*;
//错误日志的建立。
public class ExceptionInfo {
public static void main(String[] args) {
try
{
int[] arr = new int [2];
System.out.println(arr[3]);
}
catch(Exception e)
{
try
{
Date d = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s = sdf.format(d);
PrintStream ps =new PrintStream("e:\\cuowu.log");
ps.println(s);
System.setOut(ps);
}
catch(Exception ex)
{
throw new RuntimeException("日志文件创建失败");
}
e.printStackTrace(System.out);
}
}
}
//小程序用于说明日志信息的建立原理,真正使用可上网下载:
log4j 工具。可以完成日志信息的建立。
|
|