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 { if (!file.exists()) return null; StringBuilder text = new StringBuilder(""); BufferedReader reader = new BufferedReader(new FileReader(file)); try {//from w w w. j av a2 s . c om String line; while ((line = reader.readLine()) != null) { text.append(line); text.append("\n"); } } finally { reader.close(); } return text.toString(); } }