Here you can find the source of writeFile(File file, String data)
public static void writeFile(File file, String data) throws IOException
//package com.java2s; import java.io.*; public class Main { public static void writeFile(File file, String data) throws IOException { try (FileWriter writer = new FileWriter(file)) { writer.write(data);/* www .ja v a2 s . co m*/ } } }