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

Mark Chang
Mark Chang
5,214 Points

Java console and System

What different between console.printf(); and System.out.println();

  1. What different between Console console = System.console(); and Scanner sc = new Scanner(System.in);
Brandon Khan
Brandon Khan
21,619 Points

The scanner is a class in java.util package used for obtaining the input of the primitive types https://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html console object gives you a way to interact with the console or terminal from where you ran the program. For example, taking input or printing to the screen

they both accept input but in different ways.

1 Answer