Java examples for File Path IO:File Operation
The following code snippet uses a buffer to append data into the previously created file.
import java.io.BufferedWriter; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; public class Main { public static void main(String[] args) { Path wiki_path = Paths.get("C:/folder1/wiki", "wiki.txt"); Charset charset = Charset.forName("UTF-8"); String text = "\ntest!"; try (BufferedWriter writer = Files.newBufferedWriter(wiki_path, charset, StandardOpenOption.APPEND)) { writer.write(text);// w ww .jav a 2 s .c o m } catch (IOException e) { System.err.println(e); } } }