只想在ComboBox中插入1-10个值。如何将int i转换为字符串值?
for(int i=1;i<11;i++){
quantityCombo.addItem(i); //Not accepting int values
}
答案 0 :(得分:2)
Use Generics and Try Like this....
JComboBox<Integer> quantityCombo= new JComboBox<Integer>();
// add items to the combo box
for(int i=1;i<11;i++){
quantityCombo.addItem(i);
}
答案 1 :(得分:0)
您可以使用Integer.toString(i)
将整数转换为字符串。
您的代码将如下所示:
for(int i=1;i<11;i++){
quantityCombo.addItem(Integer.toString(i));
}
答案 2 :(得分:0)