ComboBox - 打印出所选项目

时间:2010-10-26 13:57:14

标签: java user-interface swing combobox jcombobox

我有点卡住了。我无法找出比这更大的问题,所以我要根深蒂固,最终建立自己的方式!

我无法在组合框中打印所选项目,目前我有一个ActionListener

box.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent evt) {
        myBox(evt);
    }
});

...

protected void myBox(ActionEvent evt)
{
    if(myBoxName.getSelectedItem().toString() != null)
    System.out.println(myBoxName.getSelectedItem().toString());
}

我希望每次更改所选项目时都会打印到控制台,但事实并非如此。这应该很容易!

由于

1 个答案:

答案 0 :(得分:4)

我刚试过你的代码,它运行正常。每当我更改选择时,所选文本都会写入System.out

我唯一改变的是检查myBoxName.getSelectedItem().toString() != null,我检查了myBoxName.getSelectedItem() != null。这不应该与你的问题有关。

public class ComboBoxTest {
    private JComboBox comboBox = new JComboBox(
          new DefaultComboBoxModel(new String[] { "Test1", "Test2", "Test3" }));

    public ComboBoxTest() {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.setSize(200, 100);

        comboBox.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                myBox(evt);
            }
        });

        frame.getContentPane().add(comboBox);
        frame.setVisible(true);
    }

    protected void myBox(ActionEvent evt) {
        if (comboBox.getSelectedItem() != null) {
            System.out.println(comboBox.getSelectedItem().toString());
        }
    }
}