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

Posted 流去

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将指定内容写入目标文件(日志)相关的知识,希望对你有一定的参考价值。

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();
      }
    }
  }

}

以上是关于将指定内容写入目标文件(日志)的主要内容,如果未能解决你的问题,请参考以下文章

如何在目标 c ipad 应用程序中创建要写入的新文本文件

计算机二级-C语言-程序填空题-190117记录-对文件的处理,复制两个文件,往新文件中写入数据。

C++ 如何将一个文件里的数据写入到另一个文件里?

ELK日志分析系统初体验

使用 spdlog (C++) 记录,记录器未将日志写入文件

linux常用命令