此代碼僅顯示一個va,並重復多次。 希望有人能幫助我。 非常感謝。如何在JComboBox中顯示數據庫中的所有值?
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);
}
}
從代碼中您將原始字符串添加多次作爲長度。您需要更新原始字符串。 –
您正在從一些''Schedule''對象中檢索單個''String''值。您必須找到一種方法來訪問數據模型中的「所有值」。 – f1sh