使用removeAllItems()后,JComboBox ActionListener无法正常工作

时间:2013-05-02 13:54:20

标签: java actionlistener jcombobox removeall

我有两个JComboBox;如果已经填充了一个项目,则删除另一个项目中的所有项目,然后添加一组新项目,第二个项目将使用所选项目触发从数据库获取信息的事件。在第一个组合框删除项目并添加新项目后,会出现问题;当我选择第二个JComboBox中的任何项目时,发生的事件不再发生。

下面我提供了我的代码片段:

第一个组合框

    cmbIDs.addActionListener(new ActionListener()
    {
        public void actionPerformed(ActionEvent e)
        {
            selection = (String)cmbIDs.getSelectedItem();
            if (!(selection.equals("Select an username")))//current selection in combobox is stored as string
            {
                comboActivate(selection);
                if (!unitC.getText().equals("")){
                    unitC.setText("");
                }
                if (!lecturer.getText().equals("")){
                    lecturer.setText("");
                }

                if (!(courseD.getText().equals("Not Enrolled"))){    
                    populateUnits(selection);
                }

            }
            else{
                JOptionPane.showMessageDialog(null,"Please select a Surname.");
            }
        }
    });

删除populateUnits(String selectionID)中的项目:

    try 
    {
        units.removeAllItems();
        units.addItem("Select a Unit");
    }
    catch (NullPointerException npe)
    {
        units.addItem("Select a Unit"); 
    }

此指令通过客户端发送到查询数据库的服务器,服务器回复信息,然后将信息添加到第二个JComboBox。我还向您保证,在使用removeAllItems()之后,这些项目将被添加到JComboBox中。

第二个jComboBox:

units.addActionListener(new ActionListener()
{
    public void actionPerformed(ActionEvent ue)
    {
        uSelect = (String)units.getSelectedItem();
        if (!(uSelect.equals("Select a Unit")))//current selection in combobox is stored as string
        {
            System.out.println(uSelect);
            unitActivate(uSelect);
        }
        else
        {
            JOptionPane.showMessageDialog(null,"Please select a Unit.");
        }
    }
});

1 个答案:

答案 0 :(得分:0)

看起来您的代码永远不会从数据库中获取一组新的项目,因此用户永远不会选择“选择一个单元”以外的任何内容,这是您的第二个代码块忽略的。