第一种办法可以通过字符串,也就是先把错误信息写入字符串,再将字符串写入文件 import java.io.*; public class Demo { public static void main(String[] args) throws Exception{ try{ throw new Exception(); }catch(Exception e){ StringWriter writer = new StringWriter(); e.printStackTrace(new Prin…