Working with Buffered Streams Using the newBufferedWriter() Method - Java File Path IO

Java examples for File Path IO:File Operation

Introduction

The following code snippet uses a buffer to append data into the previously created file.

Demo Code

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);
    }

  }
}

Result


Related Tutorials