本帖最后由 偏執旳、靑春 于 2013-3-1 13:38 编辑
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("exception.log");
ps.println(s);
System.setOut(ps);
}
catch (IOException ee)
{
throw new RuntimeException("日志文件创建失败");
}
e.printStackTrace(System.out);
}
}
这个程序里面是不是没有关流啊?
打印流里面明显yougeclose()方法,这里是没有必要还是毕老师忘记了? |