Here you can find the source of readFile(final String aFileName)
private static final BufferedReader readFile(final String aFileName) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.*; public class Main { private static final BufferedReader readFile(final String aFileName) throws IOException { final InputStream stream = new FileInputStream(aFileName); return new BufferedReader(new InputStreamReader(stream)); }/*from w w w . j a v a 2 s .c om*/ }