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 trialTony K
Courses Plus Student 442 Points"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
Courses Plus Student 26,868 PointsHi 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.
Steve Hunter
57,712 PointsHi 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.
Tony K
Courses Plus Student 442 PointsThankz @ Steven Hunter
Steve Hunter
57,712 PointsNo problem! ;-)