Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Data Structures Efficiency! Design the UI

Parker Busswood
Parker Busswood
20,207 Points

Why do we use BufferedReader and InputStreamReader?

In the video, we create a reader to handle user input:

mReader = new BufferedReader(new InputSteamReader(System.in));

Why do we use this approach instead of using the console or other methods we came across previously? This part wasn't clear to me in the video.

1 Answer

Seth Kroger
Seth Kroger
56,413 Points
  1. It's another approach to I/O that's common in Java.

  2. The program also used in the Local Development Environments course. IDE's have trouble with Console so you need to use this method to get it to work.