我需要在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;
}
感谢任何帮助。
答案 0 :(得分:41)
方法Object JComboBox.getSelectedItem()
返回一个由Object
类型包装的值,因此您必须相应地进行转换。
语法:
YourType varName = (YourType)comboBox.getSelectedItem();`
String value = comboBox.getSelectedItem().toString();
答案 1 :(得分:6)
如果字符串为空,comboBox.getSelectedItem().toString()
将为NullPointerException
。因此(String)
更好地进行类型转换。