Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created May 17, 2018 19:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
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