实现一个简单的日志文件
(其实就是测试一下标准输出流)
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Logger {
/*
记录日志的方法
*/
public static void log(String msg){
try {
//指向一个日志文件
PrintStream out=new PrintStream(new FileOutputStream("log.txt",true));
//改变输出方向 (默认是输出到控制台, 所以需要修改输出方向)
System.setOut(out);
//当前日期时间
Date currentTime=new Date();
//格式化时间
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");
String strTime=sdf.format(currentTime);
System.out.println(strTime+": "+msg);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
开始测试
public class LogTest {
public static void main(String[] args) {
//测试工具类是否可用
Logger.log("调用了System类的gc()方法,建议启动垃圾回收");
Logger.log("调用了doSome()方法");
Logger.log("用户尝试登录,验证失败");
}
}
结果
成功!