Java 实现把异常信息写入到文件中

示例代码如下:

import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		TestException test = new TestException();
		//新建一个文件
		File file = new File("log.txt");
		PrintStream stream = null;
		try {
			//创建文件的输出流
			stream = new PrintStream(file);
		} 
		catch (FileNotFoundException e) {
			e.printStackTrace();
		}
		try {
			test.f(0);
		}
		catch (MyException e) {
			//将异常信息输出到指定的输出流中
			e.printStackTrace(stream);
			//System.out.println("已保存错误信息到日志文件中");
		}
		//关闭输出流
		stream.flush();
		stream.close();

	}

	
}

注意:生成的log.txt 文件在项目文件中

MyException 是作者自定义的一个异常

你可能感兴趣的:(Java)