Skip to content

Instantly share code, notes, and snippets.

@KowalczykBartek
Created February 15, 2015 01:12
Show Gist options
  • Save KowalczykBartek/5e280decd43a4a525d91 to your computer and use it in GitHub Desktop.
Save KowalczykBartek/5e280decd43a4a525d91 to your computer and use it in GitHub Desktop.
static String readFirstLineFromFile(String path) throws IOException {
try (BufferedReader br = new BufferedReader(new FileReader(path))) {
return br.readLine();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment