使用HashMap填充ComboBox?

时间:2013-12-03 11:42:44

标签: java frameworks vaadin vaadin7

我正在尝试使用信息hashmap填充vaadin7的组合框。我创建了一个返回HashMap的类,当我得到返回时,我使用a来为每个组合框填充这个组合框但是只显示数字而不是hashmap的键和值。

我正在尝试这个。

/** states of brasil class */
public class EstadosBrasil {
private static final HashMap<String, String> uf = new HashMap();

/** return all states of brasil */
public static HashMap<String, String> getEstados(){             
    uf.put("AC", "AC");
    uf.put("AL", "AL");
    uf.put("AM", "AM");
    uf.put("AP", "AP");
    uf.put("BA", "BA");
    uf.put("CE", "CE");
    uf.put("DF", "DF");
    uf.put("ES", "ES");
    uf.put("FN", "FN");
    uf.put("GO", "GO");
    uf.put("MA", "MA");
    uf.put("MG", "MG");
    uf.put("MS", "MS");
    uf.put("MT", "MT");
    uf.put("PA", "PA");
    uf.put("PB", "PB");
    uf.put("PE", "PE");
    uf.put("PI", "PI");
    uf.put("PR", "PR");
    uf.put("RJ", "RJ");
    uf.put("RN", "RN");
    uf.put("RO", "RO");
    uf.put("RR", "RR");
    uf.put("RS", "RS");
    uf.put("SC", "SC");
    uf.put("SE", "SE");     
    uf.put("SP", "SP");
    uf.put("TO", "TO");

    return uf;
}   

}

// my combobox 
private ComboBox comboEstado;
comboEstado = new ComboBox("States");
comboEstado.setWidth("100px");
HashMap<String, String> estados = EstadosBrasil.getEstados();       
for(Entry<String, String> e : estados.entrySet()){                  
    Object obj = comboEstado.addItem();
    comboEstado.setItemCaption(e.getKey(), e.getValue());           
    comboEstado.setValue(obj);
}
mainLayout.addComponent(comboEstado);

有什么想法吗?

感谢

2 个答案:

答案 0 :(得分:5)

更改 -

Object obj = comboEstado.addItem();
comboEstado.setItemCaption(e.getKey(), e.getValue());           
comboEstado.setValue(obj);

要 -

comboEstado.addItem(e.getKey());
comboEstado.setItemCaption(e.getKey(), e.getValue()); 

如果你想要出现键和值对,可以这样做 -

comboEstado.setItemCaption(e.getKey(), e.getKey() + " : " +  e.getValue());

顺便说一句,我希望你能改变价值观。如果键和值都相同,则只需使用 Set

答案 1 :(得分:0)

在新的Vaadin 8 API中,组合框上没有addItems方法。 下面的代码有效:

Map<String, String> map = new HashMap<>();
ComboBox combobox = new ComboBox<>("My Combobox");
combobox.setItems(map);
combobox.setItemCaptionGenerator(new ItemCaptionGenerator() {
    @Override
    public String apply(Object o) {
        HashMap m = (HashMap) o;
        return m.keySet().stream().findFirst().get().toString();
    }
});