我有些奇怪,我无法理解为什么会发生这种情况。 我搜索了包括这里在内的网页但找不到答案。 我有3个ComboBox,后面跟着一个。 它是一个applet转换工具。 每次我选择要在Main ComboBox转换的字段时,它会加载另外两个要转换的值。但是在每次加载之后我都会选择我要转换它的两个ComboBox。 这是代码: //这是对象//////
MyEvent handler = new MyEvent();
MainCombo = new JComboBox(issueArray);
MainCombo.setBounds(120, 50, 120, 20);
MainCombo.addActionListener(handler);
add(MainCombo);
Combo1 = new JComboBox(Angle);
Combo1.setBounds(120, 90, 120, 20);
Combo1.addActionListener(handler);
add(Combo1);
Combo2 = new JComboBox(Angle);
Combo2.setBounds(320, 90, 120, 20);
Combo2.addActionListener(handler);
add(Combo2);
//The Method To Change Values In The ComboBox
public void loadIssueParam(String Issue){
Combo1.removeAllItems();
Combo2.removeAllItems();
switch (Issue) {
case "Angle":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Angle);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Area":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Area);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Data":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Data);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Energy":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Energy);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Force":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Force);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Length":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Length);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Mass":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Mass);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Power":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Power);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Pressure":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Pressure);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Speed":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Speed);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Temperature":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Temperature);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Time":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Time);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
case "Volume":
{
DefaultComboBoxModel newModel= new DefaultComboBoxModel(Volume);
Combo1.setModel(newModel);
Combo2.setModel(newModel);
break;
}
}
/// I THINK MAYBE THIS METHOD HAVE SOMETHING TO DO WITH IT - OR I NEED SOME HOW TO
/// CLEAR THE SELECTION.
private class MyEvent implements ActionListener{
@Override
public void actionPerformed(ActionEvent event){
if(event.getSource()==MainCombo){
JComboBox cb=(JComboBox)event.getSource();
IssueBox=(String)cb.getSelectedItem();
loadIssueParam(IssueBox);
}
if(event.getSource()==Combo1){
JComboBox cb=(JComboBox)event.getSource();
fromBox=(String)cb.getSelectedItem();
}
if(event.getSource()==Combo2){
JComboBox cb=(JComboBox)event.getSource();
toBox=(String)cb.getSelectedItem();
}
}
}
每次我做一个副选择它会影响两个子组合。
感谢您的帮助 尼鲁
答案 0 :(得分:3)
啊,我看了你的代码后现在明白了你的问题。您的问题是两个子组合框共享相同的模型,因此如果您更改一个子组合框中的选择,它会更改共享模型的状态,导致另一个子组合框更改其选择。解决你的问题,给他们每个人自己的模型。
即,
switch (Issue) {
case "Angle":
{
DefaultComboBoxModel newModel1 = new DefaultComboBoxModel(Angle);
DefaultComboBoxModel newModel2 = new DefaultComboBoxModel(Angle);
Combo1.setModel(newModel1);
Combo2.setModel(newModel2);
break;
}
// etc...
另外,请考虑使用HashMap<String, String[]>
或HashMap<String, Vector<String>>
等地图。这样做并正确地填充Map,并且可以将那个巨大的switch语句简化为
Combo1.setModel(new DefaultComboBoxModel(modelMap.get(Issue)));
Combo2.setModel(new DefaultComboBoxModel(modelMap.get(Issue)));
接下来我们将研究Java命名规则。