Java中组合框事件处理中为什么调用getSelectedItem时总是返回null
ItemListeneral3=newItemListener(){publicvoiditemStateChanged(ItemEventae3){JComboBoxc...
ItemListener al3 = new ItemListener() {
public void itemStateChanged(ItemEvent ae3){
JComboBox combobox=(JComboBox) ae3.getSource();
if(combobox==MyComboBox1){
String content1 = (String)MyComboBox1.getSelectedItem();
System.out.print(content1);
}
else if(combobox==MyComboBox2){
String content2 =(String)MyComboBox2.getSelectedItem();
System.out.print(content2);}
else if(combobox==MyComboBox3){
String content3 =(String)MyComboBox3.getSelectedItem();
System.out.print(content3);}
}
};这是后面调用getSelectedItem的代码,但是最后通过流输出时总是null,就是不能将我选中的条目内容输出,这是什么原因啊?哪位高人帮忙解决一下。 展开
public void itemStateChanged(ItemEvent ae3){
JComboBox combobox=(JComboBox) ae3.getSource();
if(combobox==MyComboBox1){
String content1 = (String)MyComboBox1.getSelectedItem();
System.out.print(content1);
}
else if(combobox==MyComboBox2){
String content2 =(String)MyComboBox2.getSelectedItem();
System.out.print(content2);}
else if(combobox==MyComboBox3){
String content3 =(String)MyComboBox3.getSelectedItem();
System.out.print(content3);}
}
};这是后面调用getSelectedItem的代码,但是最后通过流输出时总是null,就是不能将我选中的条目内容输出,这是什么原因啊?哪位高人帮忙解决一下。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询