作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
private void fillCombo(){
try {
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/MTD","root","");
PreparedStatement ps = con.prepareStatement("Select * from sa where municipalities ='" + municipality.getSelectedItem().toString()+ "'");
ResultSet rs = ps.executeQuery();
while(rs.next()){
String mun = rs.getString("Province");
municipality.addItem(mun);
}
}
catch(Exception e){
JOptionPane.showMessageDialog(null, e);
}
我有两个组合框,可以从数据库中获取值。第一个组合(province
)来自一个具有一列的表,该列是省份列表。因此,在 province.itemchangedstate
上,我希望它设置与 combo1< 选择的省份相关的
(combo2
(市政
)的值省
)。
我是java新手,一直坚持下去,不知道如何进一步进行。有人可以帮忙吗?
最佳答案
据我所知,您的要求是在选择其他组合框的基础上填充一个组合框。喜欢
这个示例代码可能适合您。
private void populateDropDownOfEnum(){
EncDecImageFrame encDecImageFrame = new EncDecImageFrame();
jComboBox1.setEditable(true);
String[] jComboBox1Values = getListOfAllEnumNames();
if (jComboBox1Values != null && jComboBox1Values.length != 0) {
jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(jComboBox1Values));
}
Object item = jComboBox1.getSelectedItem();
jComboBox2.removeAllItems();
jComboBox2.setEditable(true);
String[] enumValuesByEnumNames = getListOfAllEnumValues(
item.toString(), artifcatoryPathOfJar.getText());
jComboBox2.setModel(new javax.swing.DefaultComboBoxModel(
enumValuesByEnumNames));
jComboBox1.addItemListener(new ItemListener() {
@Override
public void itemStateChanged(ItemEvent e) {
Object item = jComboBox1.getSelectedItem();
jComboBox2.removeAllItems();
jComboBox2.setEditable(true);
String[] enumValuesByEnumNames = getListOfAllEnumValues(
item.toString(), artifcatoryPathOfJar.getText());
jComboBox2.setModel(new javax.swing.DefaultComboBoxModel(
enumValuesByEnumNames));
}
});
关于java - 如何将数据从一个 JComboBox 传递到一条 SQL 语句,该 SQL 语句将调用第二个 JComboBox 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30503363/
我是一名优秀的程序员,十分优秀!