Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created May 17, 2018 19:04
Show Gist options
  • Select an option

  • Save mcupak/02a794501000e4d55bc15caa1fb64e35 to your computer and use it in GitHub Desktop.

Select an option

Save mcupak/02a794501000e4d55bc15caa1fb64e35 to your computer and use it in GitHub Desktop.
void readFile(String file) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
try (BufferedReader reader2 = reader) {
String line;
while ((line = reader2.readLine()) != null) {
System.out.println(line);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment