Here you can find the source of saveFile(String content, File file)
Parameter | Description |
---|---|
content | a parameter |
file | a parameter |
Parameter | Description |
---|---|
IOException | thrown if an I/O error occurs opening or creating the file |
public static void saveFile(String content, File file) throws IOException
//package com.java2s; import java.io.BufferedWriter; import java.io.File; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; public class Main { /**/* ww w . ja v a2 s . c o m*/ * The character set. UTF-8 works good for windows, mac and Umlaute. */ private static final Charset CHARSET = Charset.forName("UTF-8"); /** * Saves the content String to the specified file. * * @param content * @param file * @throws IOException thrown if an I/O error occurs opening or creating the file */ public static void saveFile(String content, File file) throws IOException { BufferedWriter writer = Files.newBufferedWriter(file.toPath(), CHARSET); writer.write(content, 0, content.length()); writer.close(); } }