Here you can find the source of readFile(String filePath)
@SuppressWarnings("resource") public static String readFile(String filePath) throws IOException
//package com.java2s; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; public class Main { @SuppressWarnings("resource") public static String readFile(String filePath) throws IOException { RandomAccessFile raf = new RandomAccessFile(new File(filePath), "r"); String content = raf.readUTF(); return content; }/* www . ja v a 2s . c o m*/ }