如何获得在可编辑的JComboBox中编写的价值?
我一直在搜索,似乎每个人都只使用.但是我的组合框是可编辑的,用户可以输入任何内容。该方法返回组合框中的实际项之一,而不是在字段中输入的字符串。JComboBox#getSelectedItem
getSelectedItem
如果我的盒子包含“Bar”和“Item”,并且用户输入“Foo”,我想得到“Foo”!
为什么不起作用getSelectedItem
有人指出,这确实也返回了输入的字符串。但是没有指出,这仅在用户停止编辑字段后才有效。我附加了这些事件侦听器:getSelectedItem
Component[] comps = input.getComponents();
//Third is the text field component
comps[2].addKeyListener(new KeyListener() {
public void keyTyped(KeyEvent e) {
doSomething();
}
});
//Also fire event after user leaves the field
input.addActionListener (new ActionListener () {
@Override
public void actionPerformed(ActionEvent e) {
doSomething();
}
});
结果是这样的:
KeyEvent:
JComboBox.getEditor().getItem() = 6
JComboBox.getSelectedItem() = null
KeyEvent:
JComboBox.getEditor().getItem() = 66
JComboBox.getSelectedItem() = null
KeyEvent:
JComboBox.getEditor().getItem() = 666
JComboBox.getSelectedItem() = null
ActionEvent:
JComboBox.getEditor().getItem() = 6666
JComboBox.getSelectedItem() = 6666
如您所见,操作事件侦听器可以捕获值,但密钥事件不能。