美文网首页
将String写入文件 脚本日志记录

将String写入文件 脚本日志记录

作者: willcoder | 来源:发表于2019-06-12 08:44 被阅读0次

日常工作中需要为业务拉取数据,统计之类的工作,需要写小的脚本或者java main方法处理一些数据,小的数据量我习惯用jdbc取出来做,虽然小功能,但还是要记录日志,所以简单点,写到一个文件里完事。

package com.bt.base;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
class LogWrite{
    private static boolean fileLog = true;
    private static String logFileName = "E:/result.txt";//指定程序执行结果保存的文件路径
    public static OutputStream getOutputStream() throws IOException{
        if (fileLog){
            File file = new File(logFileName);
            if (!file.exists())
                file.createNewFile();
            return new FileOutputStream(file, true);
        }else{
            return System.out;
        }
    }
    public static void log(String info) throws IOException{
        OutputStream out = getOutputStream();
        out.write(info.getBytes("utf-8"));
    }
   
    public static void main(String[] args) throws IOException{
        // TODO Auto-generated method stub
        LogWrite.log("hello world");//"hello world"会保存到result.txt文件中
    }
}
   

相关文章

网友评论

      本文标题:将String写入文件 脚本日志记录

      本文链接:https://www.haomeiwen.com/subject/jaiytctx.html