document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. static String readFirstLineFromFile(String path) throws IOException {
  2.   try (BufferedReader br = new BufferedReader(new FileReader(path))) {
  3.     return br.readLine();
  4.   }
  5. }
');