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 trialZach Enseleit
538 PointsIDE difference?
Why is it that on an IDE, calling 'console' is not acceptable?
2 Answers
Zhaopeng Wang
Full Stack JavaScript Techdegree Graduate 32,210 PointsIf you are working with Java in IDE, most of the time, you would use System.out.printf:
In the video, the lecture import Java.io.Console, and you might not need that if you are using IDE such as IntelliJ
Check the following Treehouse answer,
https://teamtreehouse.com/community/what-is-the-difference-between-systemoutprint-and-consoleprintf
Martin Gallauner
10,808 PointsLike Zhaopeng said, you can use System.out.print()
On the job you are going to use the debugger instead of any console output. Which IDE are you using?
Zach Enseleit
538 PointsI am using IntelliJ