单击按钮时在文本字段中显示组合框中的值

时间:2017-05-07 17:55:38

标签: java combobox click jbutton textfield

在 单击按钮(jButton1)时执行以下方法!我想在单击jbutton1时在文本域(jTextField3)中的combox(jComboBox1)中显示所选项目!

 private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
        if (evt.getSource() == jComboBox1 )

     type = (String)jComboBox1.getSelectedItem();

     jTextField3.setText(type);

}

但是在运行程序时没有编译错误,jTextField3中没有显示任何内容!我该如何纠正这个问题?

1 个答案:

答案 0 :(得分:-2)

可以使用

type = jComboBox1.getSelectedItem().toString();