JPasswordField pf = new JPasswordField();
JOptionPane.showConfirmDialog(null, pf, "Please enter password", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
This is giving me the dialog box with password input field, but focus is on 'OK' button. But I need the focus on the password input field.