TheJPasswordField
class, a subclass ofJTextField
, provides specialized text fields for password entry. For security reasons, a password field does not show the characters that the user types. Instead, the field displays a character different from the one typed, such as an asterisk '*'. As another security precaution, a password field stores its value as an array of characters, rather than as a string. Like an ordinary text field, a password field fires an action event when the user indicates that text entry is complete, for example by pressing the Enter button.Here is a picture of a demo that opens a small window and prompts the user to type in a password.
Click the Launch button to run PasswordDemo using Java™ Web Start (download JDK 6). Alternatively, to compile and run the example yourself, consult the example index.
The password is "bugaboo". You can find the entire code for this program in . Here is the code that creates and sets up the password field:
PasswordDemo.java
The argument passed into thepasswordField = new JPasswordField(10); passwordField.setActionCommand(OK); passwordField.addActionListener(this);JPasswordField
constructor indicates the preferred size of the field, which is at least 10 columns wide in this case. By default a password field displays a dot for each character typed. If you want to change the echo character, call thesetEchoChar
method. The code then adds an action listener to the password field, which checks the value typed in by the user. Here is the implementation of the action listener'sactionPerformed
method:public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); if (OK.equals(cmd)) { //Process the password. char[] input = passwordField.getPassword(); if (isPasswordCorrect(input)) { JOptionPane.showMessageDialog(controllingFrame, "Success! You typed the right password."); } else { JOptionPane.showMessageDialog(controllingFrame, "Invalid password. Try again.", "Error Message", JOptionPane.ERROR_MESSAGE); } //Zero out the possible password, for security. Arrays.fill(input, '0'); passwordField.selectAll(); resetFocus(); } else ...//handle the Help button... }
Security note: Although theJPasswordField
class inherits thegetText
method, you should use thegetPassword
method instead. Not only isgetText
less secure, but in the future it might return the visible string (for example,"******"
) instead of the typed string.To further enhance security, once you are finished with the character array returned by the
getPassword
method, you should set each of its elements to zero. The preceding code snippet shows how to do this.A program that uses a password field typically validates the password before completing any actions that require the password. This program calls a private method,
isPasswordCorrect
, that compares the value returned by thegetPassword
method to a value stored in a character array. Here is its code:private static boolean isPasswordCorrect(char[] input) { boolean isCorrect = true; char[] correctPassword = { 'b', 'u', 'g', 'a', 'b', 'o', 'o' }; if (input.length != correctPassword.length) { isCorrect = false; } else { isCorrect = Arrays.equals (input, correctPassword); } //Zero out the password. Arrays.fill(correctPassword,'0'); return isCorrect; }
The following tables list the commonly usedJPasswordField
constructors and methods. For information on the API that password fields inherit, see How to Use Text Fields.
Commonly Used JPasswordField Constructors and Methods Constructor or Method Purpose JPasswordField()
JPasswordField(String)
JPasswordField(String, int)
JPasswordField(int)
JPasswordField(Document, String, int)Creates a password field. When present, the int
argument specifies the desired width in columns. TheString
argument contains the field's initial text. TheDocument
argument provides a custom model for the field.char[] getPassword() Returns the password as an array of characters. void setEchoChar(char)
char getEchoChar()Sets or gets the echo character which is displayed instead of the actual characters typed by the user. void addActionListener(ActionListener)
void removeActionListener(ActionListener)
(defined inJTextField
)Adds or removes an action listener. void selectAll()
(defined inJTextComponent
)Selects all characters in the password field.
PasswordDemo is the Tutorial's only example that uses aJPasswordField
object. However, the Tutorial has many examples that useJTextField
objects, whose API is inherited byJPasswordField
. See Examples That Use Text Fields for further information.