Here you can find the source of writeStringToFile(File file, String string)
public static void writeStringToFile(File file, String string) throws Exception
//package com.java2s; //License from project: Apache License import java.io.File; import java.nio.file.Files; public class Main { private static final String TEXT_CHARSET = "UTF-8"; public static void writeStringToFile(File file, String string) throws Exception { Files.write(file.toPath(), string.getBytes(TEXT_CHARSET)); }// www . j a v a2s . c o m }