我已经完成了从MySQL到JComboBox的数据检索。 它运作成功。
如果此代码将在字段中检索我的数据:
inventCodeField.setText(rs.getString("ItemCode"));
如何在不删除其他选项的情况下检索我从JComboBox
中选择的数据?
答案 0 :(得分:0)
查询特定记录后,提取类别的字段值,然后将其用作JComboBox类的setSelectedItem()参数。
// assume that category is a String that holds the category value after querying
cbo_category.setSelectedItem(category);