从Hashmap填充List并检索密钥

时间:2013-07-04 10:05:33

标签: java swing hashmap jlist

如何从HashMap填充JList,但只显示列表中的值?

我使用以下代码填充列表。当我启动应用程序时,我得到列表项,如{1 = Value1},{2 = Value2}等。我想只显示值。

我正在使用HashMap,因为稍后当我提交表单时我需要JList使用为我的Insert方法选择的值的键,我从其他示例中了解到这是通过hashsmap完成的。

public void populateListwithCategories(final JList list) {
    try {
        DefaultListModel listModel = new DefaultListModel();
        List<AdvertisementCategory> advertisementCategories = advertisementCategoryProvider.getAdvertisementCategories();
        for (AdvertisementCategory advertisementCategory : advertisementCategories) {               
            int id = advertisementCategory.getId();
            String name = advertisementCategory.getName();
            advertisementCategory.advertisementMap.put(id, name);
            listModel.addElement(advertisementCategory.advertisementMap); 
        }
        list.setModel(listModel);
    } catch (MalformedURLException ex) {
        Logger.getLogger(AdvertisementCategoryController.class.getName()).log(Level.SEVERE, null, ex);
    } catch (IOException ex) {
        Logger.getLogger(AdvertisementCategoryController.class.getName()).log(Level.SEVERE, null, ex);
    }
}

这是My AdvertisementCategory模型,我想将数据导出到hashmap。

public class AdvertisementCategory {

private int id;
private String name, description;
public List<AdvertisementCategory> advertisementCategories;

public Map<Object, String> advertisementMap = new HashMap<>();

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getDescription() {
    return description;
}

public void setDescription(String description) {
    this.description = description;
}

public AdvertisementCategory(int id, String name, String description) {
    this.id = id;
    this.name = name;
    this.description = description;
}

public AdvertisementCategory(String name, String description) {
    this.name = name;
    this.description = description;
}

public AdvertisementCategory() {

}

public AdvertisementCategory(int id, String name) {
    this.id = id;
    this.name = name;
}

}

1 个答案:

答案 0 :(得分:2)

你正试图为不存在的问题实施一个相当复杂的解决方案。

使用Swing的MVC原则,您可以将AdvertisementCategory直接添加到列表模型中并实现ListCellRenderer以从AdvertisementCategory实例中提取显示值,该实例应该显示在JList本身中。在JList上调用getSelectedValue()将为您提供AdvertisementCategory实例,并且您可以访问其所有内容。