如何打印异常信息?
怎么用一行代码把StackTrace追加到一个文件里?
------解决方案--------------------e.printStackTrace(new PrintStream(new FileOutputStream("error.txt")));
------解决方案--------------------
文件操作肯定会有异常的,只能捕捉或抛出去
try{e.printStackTrace(new PrintStream(new FileOutputStream("error.txt",true)));}catch (FileNotFoundException e1){e1.printStackTrace();}
再说这也只是
一行代码