不知怎的,我设法让那个id没有显示在组合框中,但是当我按下按钮时如何制作它确定我可以得到id值?按下按钮时使用String from = (String) jComboBox1.getSelectedItem();
不起作用。我得到String code = (String) item.getValue();
我需要的ID,但是如何将其传递给下一个查询?
public void select() {
try {
String sql = "select * from category";
pst = con.prepareStatement(sql);
rs = pst.executeQuery();
while (rs.next()) {
jComboBox1.addItem(new Item<String>(rs.getString("mkid"), rs.getString("name")));
}
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e);
}
jComboBox1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JComboBox jComboBox1 = (JComboBox) e.getSource();
Item item = (Item) jComboBox1.getSelectedItem();
String code = (String) item.getValue();
System.out.println(code);
}
});
}
The item
public class Item<V> implements Comparable<Item>
{
private V value;
private String description;
public Item(V value, String description)
{
this.value = value;
this.description = description;
}
public V getValue()
{
return value;
}
public String getDescription()
{
return description;
}
public int compareTo(Item item)
{
return getDescription().compareTo(item.getDescription());
}
@Override
public boolean equals(Object object)
{
Item item = (Item)object;
return value.equals(item.getValue());
}
@Override
public int hashCode()
{
return value.hashCode();
}
@Override
public String toString()
{
return description;
}
答案 0 :(得分:1)
为您的按钮添加一个监听器,然后添加代码以将您的组合框值设为字符串。
JButton okButton = new JButton("OK");
okButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JComboBox jComboBox1 = (JComboBox) e.getSource();
Item item = (Item) jComboBox1.getSelectedItem();
String code = (String) item.getValue();
System.out.println(code);
}
});