我需要在 Swing 中获取组合框的整数值。
我已经为组合框设置了一个整数值作为 id。我尝试了 combobox.getSelectedItem() 和 combobox.getSelectedIndex() 但它无法获得 int 值。
下面是我的代码:
CommonBean commonBean[]=new CommonBean[commonResponse.getCommonBean().length+1];
for(int i=0;i<commonResponse.getCommonBean().length;i++)
{
commonBean[i] = new CommonBean("--Please select a project--", 0);
commonBean[i+1] = new CommonBean(commonResponse.getCommonBean()[i].getProjectName(), commonResponse.getCommonBean()[i].getProjectId());
}
JComboBox combobox= new JComboBox(commonBean);
public CommonBean(String projectName,int projectId) {
this.projectName = projectName;
this.projectId = projectId;
}
任何帮助表示赞赏。