Java IO Tutorial - Java Files.newBufferedReader(Path path, Charset cs)








Syntax

Files.newBufferedReader(Path path, Charset cs) has the following syntax.

public static BufferedReader newBufferedReader(Path path,     Charset cs)     throws IOException

Example

In the following code shows how to use Files.newBufferedReader(Path path, Charset cs) method.

import java.io.BufferedReader;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
/* www  .  j a v  a  2 s . c om*/
public class Main {

    public static void main(String[] args) {

        Path wiki_path = Paths.get("C:/tutorial/wiki", "wiki.txt");

        Charset charset = Charset.forName("UTF-8");
        try (BufferedReader reader = Files.newBufferedReader(wiki_path, charset)) {
            String line = null;
            while ((line = reader.readLine()) != null) {
                System.out.println(line);
            }
        } catch (IOException e) {
            System.err.println(e);
        }
    }
}