18

我有一个ComboBox由国家组成的 [JavaFX]。

我的对象:

public static class CountryObj {
    private  String TCountryDescr;
    private  String TCountryCode;        

    private CountryObj(String CountryDescr,String CountryCode) {
        this.TCountryDescr = CountryDescr;         
        this.TCountryCode = CountryCode;             
    }  

    public String getTCountryCode() {
        return TCountryCode;
    }

    public void setTCountryCode(String fComp) {
        TCountryCode= fComp;
    }         

    public String getTCountryDescr() {
        return TCountryDescr;
    }

    public void setCountryDescr(String fdescr) {
        TCountryDescr = fdescr;
    }                 

    @Override
    public String toString() {
        return TCountryDescr;
    }
}    

然后我有我的ObservableList

private final ObservableList<CountryObj> CountrycomboList =
    FXCollections.observableArrayList(
                 new CountryObj("United States", "US"),
                 new CountryObj("United Kingdom", "UK"),
                 new CountryObj("France", "FR"),
                 new CountryObj("Germany", "DE"));    

然后我的ComboBox哪个显示国家的名字和国家的代码是我自己用的:

private ComboBox<CountryObj> cCountry1 = new ComboBox<>();

cbCountry1.setItems(CountrycomboList);

cbCountry1.getSelectionModel().selectedItemProperty().addListener(new                  ChangeListener<CountryObj>() {

        @Override
        public void changed(ObservableValue<? extends CountryObj> arg0, CountryObj arg1, CountryObj arg2) {
            if (arg2 != null) {
                System.out.println("Selected Country: " + arg2.getTCountryCode());
            }
        }
    });

如果我只有国家代码“DE”,我如何自动选择一个国家,例如德国?

4

5 回答 5

21
    comboBox.getSelectionModel().select(indexOfItem);
or
    comboBox.setValue("item1");
于 2014-03-24T22:11:03.053 回答
16

几个月前的问题,但对于此类问题,这里有更优雅的解决方案。

修改CountryObj类并覆盖hashCodeequals函数如下:

public class CountryObj {
 private  String TCountryDescr;
private  String TCountryCode;        

public CountryObj(String CountryDescr,String CountryCode) {
    this.TCountryDescr = CountryDescr;         
    this.TCountryCode = CountryCode;             
}  
public String getTCountryCode() {
    return TCountryCode;
}
public void setTCountryCode(String fComp) {
    TCountryCode= fComp;
}         
public String getTCountryDescr() {
    return TCountryDescr;
}
public void setCountryDescr(String fdescr) {
    TCountryDescr = fdescr;
}                 
@Override
public String toString() {
    return TCountryDescr;
}   
@Override
public int hashCode() {
    int hash = 0;
    hash += (TCountryCode != null ? TCountryCode.hashCode() : 0);
    return hash;
}

@Override
public boolean equals(Object object) {
     String otherTCountryCode = "";
    if (object instanceof Country) {
        otherTCountryCode = ((Country)object).TCountryCode;
    } else if(object instanceof String){
        otherTCountryCode = (String)object;
    } else {
        return false;
    }   

    if ((this.TCountryCode == null && otherTCountryCode != null) || (this.TCountryCode != null && !this.TCountryCode.equals(otherTCountryCode))) {
        return false;
    }
    return true;
  }    
}

现在在您的代码中,如果您将执行以下语句,它将自动为您选择“德国”。

cmbCountry.getSelectionModel().select("DE")

您还可以将 CountryObj 的对象传递给select上述方法。

于 2013-10-31T12:45:28.993 回答
9

我认为最简单的解决方案是编写一个自动选择函数,在您的 ObservableList找到匹配的CountryObj 。找到正确的CountryObj 后,告诉组合框将其设置为它的值。它应该看起来像这样......

private void autoSelectCountry(String countryCode)
{
    for (CountryObj countryObj : countryComboList)
    {
        if (countryObj.getTCountryCode().equals(countryCode))
        {
            cbCountry1.setValue(countryObj);
        }
    }
}

编辑:

这可以进一步重构为所有ComboBox'es采用不同类型参数的可重用方法:

public static <T> void autoSelectComboBoxValue(ComboBox<T> comboBox, String value, Func<T, String> f) {
    for (T t : comboBox.getItems()) {
        if (f.compare(t, value)) {
            comboBox.setValue(t);
        }
    }
}

接口在哪里Func

public interface Func<T, V> {
    boolean compare(T t, V v);
}

如何应用此方法:

autoSelectComboBoxValue(comboBox, "Germany", (cmbProp, val) -> cmbProp.getNameOfCountry().equals(val));
于 2013-08-09T18:46:38.490 回答
3

如果两个组合框都来自同一个数组、第一列和第二列,则它们具有相同的序列。然后就可以使用索引了。

a = comboBox1.getSelectionModel().getSelectedIndex(); 
comboBox2.getSelectionModel().select(a);

“美国”在索引位置 1 “美国”也在索引位置 1 上,然后:

comboBox2.getSelectionModel().select(1); // is "US"
于 2017-02-08T09:04:16.563 回答
0

Brendan 和 Branislav Lazic 的解决方案是完美的,但我们仍然可以改进对 autoSelectComboBoxValue 方法的调用:

public static <T, V> void autoSelectComboBoxValue(ComboBox<T> comboBox, V value, Func<T, V> f) {...}

:)

于 2015-07-31T01:13:01.830 回答