How can I give this password field focus?

2019-06-21 22:45发布

This may seem trivial, but I can't figure out how to give the password box in this dialog focus.

import javax.swing.JOptionPane;
import javax.swing.JPasswordField;

public class PasswordBox {
    @SuppressWarnings("unused")
    public String prompt() {
        JPasswordField pass = new JPasswordField(10);
        int action = JOptionPane.showConfirmDialog(null, pass,"Enter Password",JOptionPane.OK_CANCEL_OPTION); 
        return new String(pass.getPassword());
    }
}

I invoke it from other classes like this: String tmpPASS = new PasswordBox().prompt();

For some reason, when the dialog shows up, the "OK" button gets focus.

stacktrace (see Eng.Fouad's answer):

at javax.swing.JComponent.addNotify(Unknown Source)
at PasswordBox$1.addNotify(PasswordBox.java:14)
at java.awt.Container.addNotify(Unknown Source)

4条回答
The star\"
2楼-- · 2019-06-21 23:24

Check out the solution presented in Dialog Focus.

Edit:

Using the approach suggested by Eng Fouad I believe the code should be:

JPasswordField pass = new JPasswordField(10)         
{
    public void addNotify()             
    {                 
        super.addNotify();
        requestFocusInWindow();             
    }         
}; 

Edit2:

The link in the "Dialog Focus" blog entry has a comment with a suggestion that works on Linux.

查看更多
聊天终结者
3楼-- · 2019-06-21 23:36

The problem is that JOptionPane is completely self contained, and seems to offer no way to specify which GUI component gets the initial focus. One solution would be to write your own subclass of Dialog - that will let you control the layout exactly and set the focus appropriately.

You might also try a javax.swing.SwingWorker. You could create one of these and start it BEFORE showing the password dialog. In the doInBackground() method, sleep for a short time, in the done() method use SwingUtilties.invokeLater() and within that Runnable, issue pass.requestFocusInWindow().

查看更多
Summer. ? 凉城
4楼-- · 2019-06-21 23:38
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;

public JOptionPane pane;

public class PasswordBox
{
    @SuppressWarnings("unused")
    public String prompt()
    {
        pane = new JOptionPane();
        JPasswordField pass = new JPasswordField(10)
        {
            public void addNotify()
            {
                pane.addNotify();
                requestFocus();
            }
        };
        int action = pane.showConfirmDialog(null, pass,"Enter Password",JOptionPane.OK_CANCEL_OPTION);
        return new String(pass.getPassword());
     }
}

or here is another way to do it:

JPanel panel = new JPanel();
JPasswordField pass = new JPasswordField(10)
{
    public void addNotify()
    {
        panel.addNotify();
        requestFocus();
    }
};
panel.add(pass);
JOptionPane pane = new JOptionPane();
JButton btnOK = new JButton("OK");
JButton btnCancel = new JButton("Cancel");
Object[] options = {btnOK, btnCancel};
pane.showOptionDialog(null, panel, "Enter the password", JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null, options, null);

Edit (by camickr, feel free to remove if this is not correct). I believe the code should be:

JPasswordField pass = new JPasswordField(10)         
{
    public void addNotify()             
    {                 
        super.addNotify();
        requestFocusInWindow();             
    }         
}; 
查看更多
我欲成王,谁敢阻挡
5楼-- · 2019-06-21 23:40

here is a working solution with focus in password field and working buttons

https://stackoverflow.com/a/21426340/2110961

查看更多
登录 后发表回答