当我重复两次或更多次过程时,popUp方法会重复

时间:2015-03-23 10:34:17

标签: java swing jtable joptionpane jpopup

当我第一次输入错误的密码时,showPopUpPassword工作正常,但是当我第二次重复输入错误密码时。它仍然在JOptionPane.showMessageDialog之后弹出(null,“不正确的密码”);

    table.addMouseListener(new MouseAdapter() {
        public void mousePressed(MouseEvent e) {
                if (e.getButton() == MouseEvent.BUTTON3) 
                {
                    popup.show(table, e.getX(), e.getY());
                    EditProfile.addActionListener(new ActionListener() {            
                        public void actionPerformed(ActionEvent e) {

                            int row = table.getSelectedRow();
                            String name = (String) table.getModel().getValueAt(row, 0);

                            if (!namelist.contains(name)) {

                                String pass =   ctr.getNamebyPassword(name, password);      // get password on database
                                password = showPopUpPassword();                             // get the user input password

                                if(!pass.equals(password)) {
                                    JOptionPane.showMessageDialog(null, "incorrect password");  

                                }else if (pass.equals(password)){
                                    edit =  new editProfileFrame(ctr.getData(name), ctr.getAccount(name));
                                    namelist.add(name);
                                }

                            }else {
                                JOptionPane.showConfirmDialog(null, "Cannot Duplicate Profile Window");
                                }



                        }
                    });
                }
        }
    });

2 个答案:

答案 0 :(得分:0)

试试这个,

while(true){
    password = showPopUpPassword();                         
    if(!pass.equals(password))
        JOptionPane.showMessageDialog(null, "incorrect password");  
    else
        break;
}

edit =  new editProfileFrame(ctr.getData(name), ctr.getAccount(name));
namelist.add(name);

答案 1 :(得分:0)

有人可能会读到这个问题.. JoptionPane重复的原因是因为EditProfile按钮位于MousePressedEvent中。

只需将Button按在MousePressedEvent之外。