import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static void print(Reader reader) throws IOException {
            try{
                int code;
                while ((code = reader.read()) != -1) {
                    System.out.print((char) code);
                }
            } catch (Exception e) {
                throw e;
            }finally{
                reader.close();
            }
        }

        public static void main(String[] args) throws IOException {
            Reader reader = new FileReader("/Users/jerry/Desktop/test.txt");
            print(reader);
        }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: