Skip to content

Instantly share code, notes, and snippets.

@nwillc
Created October 25, 2018 00:23
Show Gist options
  • Save nwillc/d82f487d8c953e76a82d5d1af95245f5 to your computer and use it in GitHub Desktop.
Save nwillc/d82f487d8c953e76a82d5d1af95245f5 to your computer and use it in GitHub Desktop.
Try with resources
try (Reader reader = new FileReader("input.txt")) {
// Use the input
} catch (FileNotFoundException e) {
// Handle possible exception
} catch (IOException e2) {
// Handle another exception
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment