Here you can find the source of writeToFile(String log, Path path)
public static void writeToFile(String log, Path path)
//package com.java2s; //License from project: Open Source License import java.io.*; import java.nio.file.*; public class Main { public static void writeToFile(String log, Path path) { try (BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(path.toFile()))) { bufferedWriter.write(log);// w w w .j a v a 2 s .c om } catch (IOException e) { e.printStackTrace(); } } }