我的項目中我想選擇填充jcombobox,這些都是國家,州,城市 當我點擊國家時,它應該在該國出現相關數量沙爹是有,然後與國家同樣的事情也爲城市在java中使用jcombobox過濾java代碼的國家/地區 - 城市
這裏是我的代碼告訴我是錯的,什麼它會爲這個
private void cmbcountryPopupMenuWillBecomeInvisible(javax.swing.event.PopupMenuEvent evt) {
try{
//JOptionPane.showMessageDialog(null,"hello");
String sql= "SELECT StateName From state where Country_Id=? ";
prst=con.prepareStatement(sql);
prst.setString(1, cmbcountry.getSelectedItem().toString());
prst.execute();
rs=prst.executeQuery();
if(rs.next()){
cmbstate.setSelectedItem(rs.getString("state"));
}
} catch(Exception e)
{
JOptionPane.showMessageDialog(null,e);
}
fillstate(cmbcountry.getSelectedIndex());
}
非常感謝 – sud0074