Skip to content

Instantly share code, notes, and snippets.

@ColdSauce
Created February 1, 2015 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColdSauce/f123fdeb52d23ea79160 to your computer and use it in GitHub Desktop.
Save ColdSauce/f123fdeb52d23ea79160 to your computer and use it in GitHub Desktop.
Read file line by line in Java
String line = "";
Bufferedreader br = new BufferedReader(new FileReader(new File("your file location")));
while((line = br.readLine()) != null){
// do stuff with line
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment