IO buffer is not picking up all .txt file data
// create a BufferedReader for the file
BufferedReader bfr = new BufferedReader(new FileReader(f));
String text;
while (( text = bfr.readLine()) != null ){
int intLine = Integer.parseInt(bfr.readLine());
System.out.println( intLine + "\n");
}
The .txt file it is reading contains 11 lines, each with a number but the output is picking up only the even numbered lines. IE: file of (10 3 50 40 100 17 531 749 85 1246 68) will only output: 3-40-17-749-1246.
At the end, I'm also throwing a non-integer error but if I had to guess I would say that is because there is a carriage return after the last number?

