JAVA自定义日志

来源:互联网 发布:开淘宝店要交哪些费用 编辑:程序博客网 时间:2024/06/01 09:00
class log {    public static void info(Object obj) {       try {           //FileWriter(文件路径,是否可以追加内容)           FileWriter fw = new FileWriter("c:/wlllog.log", true);           fw.write(obj.toString() + "\r\n");           fw.flush();           fw.close();       } catch (IOException e) {           e.printStackTrace();       }    }}

0 0