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

"console.readLine" Problem !

I just installed netbeans and i can't use "console.readLine" Method on that.. Why is that ? Any help would be Useful.. AND

SORRY FOR MY BAD ENGLISH !

3 Answers

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

Hi Tony K , I just answered a similar question mins ago, allow me to copy the answer over.


The console object only becomes available when you run your java code via Console/command line interface; some IDEs have no Console environment.

Java gives you several different ways to take user input, such as Scanner class, BufferedReader ... among others.

Check out this popular StackOverflow thread for examples on how to user them. Cheers.

Hi Tony,

I'm pretty sure that the console object isn't available except in the command line. You'll need to use a different method to capture user input, like a BufferedReader or Scanner object.

Steve.

Thankz @ Steven Hunter

No problem! ;-)