JComboBox为一个字符串ArrayList添加项目,但是从另一个GUI中消失

时间:2009-12-11 00:41:38

标签: java jcombobox

我有2个JComboBox组件添加到我的GUI productComboBoxcategoryComboBox,并为每个组件定义了以下项侦听器:

    categoryComboBox.addItemListener(new GoItemListener());
    productComboBox.addItemListener(new ProductItemListener());

用户首先选择产品,然后监听器应根据选择的产品填充类别框。我的项目监听器是内部类。

ProductItemListener调用方法populateCategories,如下所示:

    protected void populateCategories() {
        String product = productComboBox.getSelectedItem().toString();

        myMediaDataAccessor.init(product);

        ArrayList categoryArrayList = null;
        categoryArrayList = myMediaDataAccessor.getCategories();

        Iterator iterator = categoryArrayList.iterator();
        String aCategory;
        while (iterator.hasNext()) {
            aCategory = (String) iterator.next();
            categoryComboBox.addItem(aCategory.toString());
        }
    }

我的productComboBox,音乐和视频中有两个产品。如果我选择音乐,那么我的categoryComboBox将使用ArrayList中的字符串正确填充。

问题是,如果我选择视频,我的categoryArrayList包含正确的字符串ArrayList,所以我的数据被返回并且似乎被添加到categoryComboBox,因为我没有得到任何例外,只是我的categoryComboBox从GUI中消失了。

任何想法?
感谢

1 个答案:

答案 0 :(得分:1)

根据您发布的随机代码很难猜测您正在做什么并且给予您25%的接受率我不确定当您不理解您所获得的建议时我是否应该回答。

无论如何,这是我分享两个相关组合框的方式:

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

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

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

如果您需要更多帮助,请发布显示问题的SSCCE