Here you can find the source of writeFile(String filePath, String content)
public static void writeFile(String filePath, String content) throws IOException
//package com.java2s; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; public class Main { public static void writeFile(String filePath, String content) throws IOException { RandomAccessFile raf = new RandomAccessFile(new File(filePath), "rw"); raf.writeUTF(content);// ww w . j a v a2s. c o m raf.close(); } }