//在监听里
comboBox.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String selectedStr = comboBox.getSelectedItem().toString()//选中字符串
comboBox.getSelectedIndex()//索引从0开始
}
})
//外面也可以用的
String selectedStr = comboBox.getSelectedItem().toString()//选中字符串
comboBox.getSelectedIndex()//索引从0开始
我想应该是你弄错了,
添加相有两种方法,一种是通过addItem(Object)另一种是在初始化jcb的时候直接new JComboBox(Vector v)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)