Regardless of the warnings you might get, don't do this.

reader.close();

This is because you will closing System.in and would never be able to take any input from the console again.

Regards,...