此代码仅显示一个va,并重复多次。 希望可以有人帮帮我。 非常感谢。
private void originComboBox() {
scheControl = new ScheduleControl();
Schedule schedule = scheControl.getRecord();
String origin = schedule.getDeparture();
for(int i = 0; i < origin.length(); i++){
originCB.addItem(origin);
}
}
答案 0 :(得分:1)
您每次都会添加相同的来源。 Shouln来自[i]?
for(int i = 0; i < origin.length(); i++){
originCB.addItem(origin[i]);
}
答案 1 :(得分:1)
String origin = schedule.getDeparture();
答案 2 :(得分:0)
你可以试试这个
for(int i = 0; i < origin.length(); i++){
originCB.addItem(origin[i]);
}
其中origin应为Array。
String origin[]={"A","B","C"};