Skip to content

Instantly share code, notes, and snippets.

@AkshayChordiya
Created July 6, 2017 05:05
Show Gist options
  • Save AkshayChordiya/ca89842cb4228d6723a6e044d6401719 to your computer and use it in GitHub Desktop.
Save AkshayChordiya/ca89842cb4228d6723a6e044d6401719 to your computer and use it in GitHub Desktop.
Try with resource example in Java
try (FileReader reader = new FileReader("input.txt")) {
// Read the file
} catch (IOException e) {
e.printStackTrace();
}
// Automatically closed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment