java - 如何获取组合框的值?

标签 java swing combobox jtable jframe

我的代码如下所示:

private void populateRoleNameComboBox() {
    roleNameJComboBox.removeAllItems();
    roleNameJComboBox.addItem(UserAccountDirectory.ADMIN_ROLE);
    roleNameJComboBox.addItem(UserAccountDirectory.SALESPERSON_ROLE);
    roleNameJComboBox.addItem(UserAccountDirectory.SUPPLIER_ROLE);   
    roleNameJComboBox.addItem(UserAccountDirectory.CUSTOMER_ROLE);
   //populatePersonNameComboBox();
}


private void populatePersonNameComboBox() {
        personNameJComboBox.removeAllItems();

       if(roleNameJComboBox.getSelectedItem().equals(UserAccountDirectory.SUPPLIER_ROLE)){
        for(Supplier s : supplierDirectory.getSupplierList()){
            personNameJComboBox.addItem(s);
                    }
               }
        else if(roleNameJComboBox.getSelectedItem().equals(UserAccountDirectory.SALESPERSON_ROLE)){
            for(Person p : employeeDirectory.getSalesPersonList()){
                personNameJComboBox.addItem(p);
                    }
               }
            else if(roleNameJComboBox.getSelectedItem().equals(UserAccountDirectory.CUSTOMER_ROLE)){
            for(Person person : customerDirectory.getCustomerList()){
                personNameJComboBox.addItem(person);
                    }
              }
  }

我的 personNameJComboBox 没有显示任何值。如何实现逻辑以根据第一个组合框获取第二个组合框的值。

最佳答案

这是一个入门的简单示例。基本上,只要第一个组合框的所选项目发生变化,您就需要更改第二个组合框的模型。

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;

public class ComboBoxTwo extends JFrame implements ActionListener
{
    private JComboBox mainComboBox;
    private JComboBox subComboBox;
    private Hashtable subItems = new Hashtable();

    public ComboBoxTwo()
    {
        String[] items = { "Select Item", "Color", "Shape", "Fruit" };
        mainComboBox = new JComboBox( items );
        mainComboBox.addActionListener( this );

        //  prevent action events from being fired when the up/down arrow keys are used
        mainComboBox.putClientProperty("JComboBox.isTableCellEditor", Boolean.TRUE);
        getContentPane().add( mainComboBox, BorderLayout.WEST );

        //  Create sub combo box with multiple models

        subComboBox = new JComboBox();
        subComboBox.setPrototypeDisplayValue("XXXXXXXXXX"); // JDK1.4
        getContentPane().add( subComboBox, BorderLayout.EAST );

        String[] subItems1 = { "Select Color", "Red", "Blue", "Green" };
        subItems.put(items[1], subItems1);

        String[] subItems2 = { "Select Shape", "Circle", "Square", "Triangle" };
        subItems.put(items[2], subItems2);

        String[] subItems3 = { "Select Fruit", "Apple", "Orange", "Banana" };
        subItems.put(items[3], subItems3);
//      mainComboBox.setSelectedIndex(1);
    }

    public void actionPerformed(ActionEvent e)
    {
        String item = (String)mainComboBox.getSelectedItem();
        Object o = subItems.get( item );

        if (o == null)
        {
            subComboBox.setModel( new DefaultComboBoxModel() );
        }
        else
        {
            subComboBox.setModel( new DefaultComboBoxModel( (String[])o ) );
        }
    }

    public static void main(String[] args)
    {
        JFrame frame = new ComboBoxTwo();
        frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible( true );
     }
}

关于java - 如何获取组合框的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19575247/

相关文章:

java - Katalon Debian headless 浏览器

java - 如何在eclipse项目中编译并运行单个jsp文件

java - 当用户在 JDialog 外部单击时如何关闭模态 JDialog?

java - 使用 Struts 2 填充组合框时出现问题

apache-flex - Flex ComboBox 中的 Null

java - 按多个属性对对象排序

java - 不使用服务的定时通知

java - JList - 使用垂直滚动条而不是垂直环绕方向的水平滚动条?

java - 根据组合框选择更新文本框

python - 如何在 tkinter Python 3.7 中为组合框下拉菜单绑定(bind)按键事件