Here you can find the source of writeFile(File f, String str)
public static void writeFile(File f, String str) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { public static void writeFile(File f, String str) throws IOException { FileOutputStream fos = new FileOutputStream(f); try {// w w w. j a v a2 s .c o m fos.write(str.getBytes("UTF-8")); fos.flush(); } finally { fos.close(); } } }