Here you can find the source of readFile(File file)
public static String readFile(File file) throws FileNotFoundException
//package com.java2s; //License from project: Open Source License import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; public class Main { public static String readFile(File file) throws FileNotFoundException { try {//from w w w . j a v a 2 s .co m FileInputStream fis = new FileInputStream(file); byte[] data = new byte[(int) file.length()]; fis.read(data); fis.close(); String str = new String(data, "UTF-8"); return str; } catch (IOException e) { e.printStackTrace(); } return ""; } }