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

日常工作中需要为业务拉取数据,统计之类的工作,需要写小的脚本或者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写入文件 脚本日志记录)