Here you can find the source of readFile(File file)
public static String readFile(File file) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class Main { public static String readFile(File file) throws IOException { BufferedReader fr = new BufferedReader(new FileReader(file)); try {/*from w w w. j av a2 s . co m*/ StringBuilder sb = new StringBuilder(); String line; while ((line = fr.readLine()) != null) sb.append(line).append("\n"); return sb.toString(); } finally { fr.close(); } } }