自动在jcombobox中显示所选项目

时间:2012-02-24 05:48:22

标签: java swing jcombobox

我已经完成了从MySQL到JComboBox的数据检索。 它运作成功。

  1. 初始 enter image description here
  2. 我选择类别“OTHERS”而不是“INGREDIENTS”然后保存它。 enter image description here
  3. 但是当我使用搜索按钮时,类别会显示INGREDIENTS而不是OTHERS。 我的问题是我想显示其他(或我选择的任何类别) enter image description here
  4. 如果此代码将在字段中检索我的数据:

    inventCodeField.setText(rs.getString("ItemCode"));
    

    如何在不删除其他选项的情况下检索我从JComboBox中选择的数据?

1 个答案:

答案 0 :(得分:0)

查询特定记录后,提取类别的字段值,然后将其用作JComboBox类的setSelectedItem()参数。

// assume that category is a String that holds the category value after querying
cbo_category.setSelectedItem(category);