Course – LS – All

Get started with Spring and Spring Boot, through the Learn Spring course:

>> CHECK OUT THE COURSE

1. Introduction

In this tutorial, we’ll explore the differences between System.console() and System.out.

2. System.console()

Let’s first create a program to retrieve the Console object:

void printConsoleObject() {
    Console console = System.console();
    console.writer().print(console);
}

Running this program from an interactive terminal will output something like java.io.Console@546a03af.

However, running it from other mediums will throw NullPointerException as console object would be null.

Or, if we run the program as below:

$ java ConsoleAndOut > test.txt

then the program will also throw a NullPointerException as we are redirecting the stream.

The Console class also provides methods to read passwords without echoing the character.

Let’s see that in action:

void readPasswordFromConsole() {
    Console console = System.console();
    char[] password = console.readPassword("Enter password: ");
    console.printf(String.valueOf(password));
}

This will prompt for the password, and it won’t echo the characters while we type it.

3. System.out

Let’s now print the object of System.out:

System.out.println(System.out);

This will return something like java.io.PrintStream.

The output will be the same from anywhere.

System.out is used to print data to the output stream and there are no methods to read data. The output stream can be redirected to any destination such as file and the output will remain the same.

We can run the program as:

$ java ConsoleAndOut > test.txt

This will print the output to the test.txt file.

4. Differences

Based on the examples, we can identify some differences:

  • System.console() returns a java.io.Console instance when it’s run from an interactive terminal – on the other hand System.out will return java.io.PrintStream object irrespective of the invocation medium
  • The behavior of System.out and System.console() is similar if we haven’t redirected any streams; otherwise, System.console() returns null
  • When multiple threads prompt for input, then the Console queues up those prompts nicely – whereas in case of System.out all of the prompts appear simultaneously

5. Conclusion

We learned in this article about the differences between System.console() and System.out. We explained that Console is useful when an application is supposed to run from an interactive console, but it has some quirks which should be noted and taken care of.

As always, the complete code for this article is available over on GitHub.

Course – LS – All

Get started with Spring and Spring Boot, through the Learn Spring course:

>> CHECK OUT THE COURSE
res – REST with Spring (eBook) (everywhere)
Comments are open for 30 days after publishing a post. For any issues past this date, use the Contact form on the site.