在摇摆中绑定组合框

Posted

技术标签:

【中文标题】在摇摆中绑定组合框【英文标题】:Binding comboboxes in swing 【发布时间】:2011-06-26 07:38:54 【问题描述】:

我正在使用 Eclipse IDE 开发桌面 (swing) 应用程序。我有三个组合框(国家、州和城市),当我选择一个新的国家或省时,我需要自动更新数据。我搜索了很多信息,但我找到的所有实现都是在 Ajax 或 NetBeans 中的 beansbinding 框架上进行的。 我尝试了 ItemEvent 的解决方案,但我在启动我的应用程序时遇到了问题,它加载了国家列表而不是其他列表。并且通过选择一个国家来收取州列表而不是城市列表。

我的代码:

    jComboBoxCountries.addItemListener(new java.awt.event.ItemListener() 
        public void itemStateChanged(java.awt.event.ItemEvent evt) 
            jComboBoxStates.setModel(new javax.swing.DefaultComboBoxModel(
                    statesOf(evt.getItem()).toArray() ));
            
        );

    jComboBoxStates.addItemListener(new java.awt.event.ItemListener() 
        public void itemStateChanged(java.awt.event.ItemEvent evt) 
                jComboBoxCities.setModel(new javax.swing.DefaultComboBoxModel(
                    citiesOf(evt.getItem()).toArray()) );
            
    );

    jComboBoxCountries.setModel(new javax.swing.DefaultComboBoxModel(
            countryList.toArray()));

【问题讨论】:

【参考方案1】:

我在启动我的应用程序时遇到问题,它会加载国家/地区列表而不是其他列表

看来您必须专门设置所选索引才能调用侦听器。

jComboBoxCountries.setModel(...)
jComboBoxCountries.setSelectedIndex(0);

并且通过选择一个国家来收取州列表而不是城市列表。

我猜这是同样的问题,一旦你重置了状态组合框的模型,你也需要选择它的索引。

另一种方法是不选择默认的州或城市,而是提示用户选择一个。下面是一些使用这种方法的代码:

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 );
     

【讨论】:

以上是关于在摇摆中绑定组合框的主要内容,如果未能解决你的问题,请参考以下文章

访问报告中的绑定组合框为空

将一些组合框绑定到一个集合

如何在组合框中返回未绑定列的值

Access VBA:根据非绑定列在组合框中查找项目

返回未绑定访问组合框的先前值

在子表单访问中绑定组合框