A program is often run from the command line and interacts with the user in the command line environment. The Java platform supports this kind of interaction in two ways: through the Standard Streams and through the Console.Standard Streams
Standard Streams are a feature of many operating systems. By default, they read input from the keyboard and write output to the display. They also support I/O on files and between programs, but that feature is controlled by the command line interpreter, not the program.The Java platform supports three Standard Streams: Standard Input, accessed through
System.in; Standard Output, accessed throughSystem.out; and Standard Error, accessed throughSystem.err. These objects are defined automatically and do not need to be opened. Standard Output and Standard Error are both for output; having error output separately allows the user to divert regular output to a file and still be able to read error messages. For more information, refer to the documentation for your command line interpreter.You might expect the Standard Streams to be character streams, but, for historical reasons, they are byte streams.
System.outandSystem.errare defined asPrintStreamobjects. Although it is technically a byte stream,PrintStreamutilizes an internal character stream object to emulate many of the features of character streams.By contrast,
System.inis a byte stream with no character stream features. To use Standard Input as a character stream, wrapSystem.ininInputStreamReader.InputStreamReader cin = new InputStreamReader(System.in);The Console
A more advanced alternative to the Standard Streams is the Console. This is a single, predefined object of typeConsolethat has most of the features provided by the Standard Streams, and others besides. The Console is particularly useful for secure password entry. The Console object also provides input and output streams that are true character streams, through itsreaderandwritermethods.Before a program can use the Console, it must attempt to retrieve the Console object by invoking
System.console(). If the Console object is available, this method returns it. IfSystem.consolereturnsNULL, then Console operations are not permitted, either because the OS doesn't support them or because the program was launched in a noninteractive environment.The Console object supports secure password entry through its
readPasswordmethod. This method helps secure password entry in two ways. First, it suppresses echoing, so the password is not visible on the user's screen. Second,readPasswordreturns a character array, not aString, so the password can be overwritten, removing it from memory as soon as it is no longer needed.The
Passwordexample is a prototype program for changing a user's password. It demonstrates severalConsolemethods./* * Copyright (c) 1995 - 2008 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of Sun Microsystems nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ import java.io.Console; import java.util.Arrays; import java.io.IOException; public class Password { public static void main (String args[]) throws IOException { Console c = System.console(); if (c == null) { System.err.println("No console."); System.exit(1); } String login = c.readLine("Enter your login: "); char [] oldPassword = c.readPassword("Enter your old password: "); if (verify(login, oldPassword)) { boolean noMatch; do { char [] newPassword1 = c.readPassword("Enter your new password: "); char [] newPassword2 = c.readPassword("Enter new password again: "); noMatch = ! Arrays.equals(newPassword1, newPassword2); if (noMatch) { c.format("Passwords don't match. Try again.%n"); } else { change(login, newPassword1); c.format("Password for %s changed.%n", login); } Arrays.fill(newPassword1, ' '); Arrays.fill(newPassword2, ' '); } while (noMatch); } Arrays.fill(oldPassword, ' '); } //Dummy verify method. static boolean verify(String login, char[] password) { return true; } //Dummy change method. static void change(String login, char[] password) {} }Passwordfollows these steps:
- Attempt to retrieve the Console object. If the object is not available, abort.
- Invoke
Console.readLineto prompt for and read the user's login name.- Invoke
Console.readPasswordto prompt for and read the user's existing password.- Invoke
verifyto confirm that the user is authorized to change the password. (In this example,verifyis a dummy method that always returnstrue.)- Repeat the following steps until the user enters the same password twice:
- Invoke
Console.readPasswordtwice to prompt for and read a new password.- If the user entered the same password both times, invoke
changeto change it. (Again,changeis a dummy method.)- Overwrite both passwords with blanks.
- Overwrite the old password with blanks.