Created
May 17, 2018 19:04
-
-
Save mcupak/02a794501000e4d55bc15caa1fb64e35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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