Skip to content

Instantly share code, notes, and snippets.

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