Here you can find the source of writeFile(File file, String text)
public static void writeFile(File file, String text) throws IOException
//package com.java2s; //License from project: Apache License import java.io.File; import java.io.IOException; import java.nio.charset.Charset; import com.google.common.io.Files; public class Main { public static void writeFile(File file, String text) throws IOException { Files.write(text, file, Charset.defaultCharset()); }// w w w .j av a2 s. c om }