public class myclass
{
// Main method
public static void main (String args[])
{
// Stream to write file
try {
int a=100;
int b=a/0;
System.out.println(b);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
这是我的代码,我想打印 E:\logfile.txt 中出现的 Evre 异常。请帮助我,我无法做到这一点。