Here you can find the source of write(String content, String file)
public static void write(String content, String file) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.*; import java.nio.charset.Charset; public class Main { public static void write(String content, String file) throws IOException { try (BufferedWriter writer = new BufferedWriter( new OutputStreamWriter(new FileOutputStream(file), Charset.defaultCharset()))) { writer.write(content);//from w w w . j a va 2 s . c om } } }