Use code:
File file = new File("input.txt");BufferedInputStream bin = new BufferedInputStream(new FileInputStream( file));byte[] buffer = new byte[(int) file.length()];bin.read(buffer);String fileStr = new String(buffer);
fileStr contains output in String.