Test.java Source code

Java tutorial

Introduction

Here is the source code for Test.java

Source

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.util.List;

public class Test {

    public static void main(String[] args) throws IOException {
        Path path = Paths.get("/home/docs/users.txt");
        List<String> contents = Files.readAllLines(path, Charset.defaultCharset());
        for (String b : contents) {
            System.out.println(b);
        }

    }
}