码迷,mamicode.com
首页 > 其他好文 > 详细

将指定内容写入目标文件(日志)

时间:2018-03-27 16:34:56      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:mil   ati   ack   static   cli   nbsp   eclipse   final   clip   

public static void logResult(String str) {      //str 要写入的内容
  FileWriter writer = null;
  try {
    // String s = AlipayConfig.log_path + "//log//"+"alipay_log_" + System.currentTimeMillis()+".txt";
    String s = "F://myeclipse85//log//"+System.currentTimeMillis()+".txt";
    File file = new File(s); 
    if(!file.exists()){
      file.createNewFile();
    }
    writer = new FileWriter(file);
    writer.write(str);
  } catch (Exception e) {
    e.printStackTrace();
  } finally {
    if (writer != null) {
      try {
        writer.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }

}

将指定内容写入目标文件(日志)

标签:mil   ati   ack   static   cli   nbsp   eclipse   final   clip   

原文地址:https://www.cnblogs.com/liuqu/p/8657691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!