Here you can find the source of writeStringToFile(String string, File file)
public static void writeStringToFile(String string, File file) throws FileNotFoundException
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static void writeStringToFile(String string, File file) throws FileNotFoundException { PrintWriter out = new PrintWriter(file); out.print(string);// ww w . j a v a2 s . c om out.close(); } }