JavaFX 2中的组合框键值对

时间:2012-05-22 09:52:16

标签: java javafx-2

我刚开始学习JavaFX 2.
现在我正在尝试构建一个示例应用程序。然后我被困在组合框中 我没有在JavaFX中找到任何关于组合框的键值对的引用 http://docs.oracle.com/javafx/2/api/index.html处的组合框javadoc没有说明关键值对。

如何创建具有不同显示值和实际值的项目的组合框?

3 个答案:

答案 0 :(得分:18)

你有两种方法:
1.只需覆盖datamodel类中的toString()方法。示例:

public class Demo extends Application {

    private final ObservableList<Employee> data =
            FXCollections.observableArrayList(
            new Employee("Azamat", 2200.15),
            new Employee("Veli", 1400.0),
            new Employee("Nurbek", 900.5));

    @Override
    public void start(Stage primaryStage) {

        ComboBox<Employee> combobox = new ComboBox<>(data);
        combobox.getSelectionModel().selectFirst(); // Select first as default
        combobox.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<Employee>() {

            @Override
            public void changed(ObservableValue<? extends Employee> arg0, Employee arg1, Employee arg2) {
                if (arg2 != null) {
                    System.out.println("Selected employee: " + arg2.getName());
                }
            }
        });
        StackPane root = new StackPane();
        root.getChildren().add(combobox);
        primaryStage.setScene(new Scene(root, 300, 250));
        primaryStage.show();
    }

    public static class Employee {
        private String name;
        private Double salary;

        @Override
        public String toString() {
            return name + " (sal:" + salary + ")";
        }

        public Employee(String name, Double salary) {
            this.name = name;
            this.salary = salary;
        }

        public String getName() {
            return name;
        }

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

        public Double getSalary() {
            return salary;
        }

        public void setSalary(Double salary) {
            this.salary = salary;
        }
    }

    public static void main(String[] args) {
        launch(args);
    }
}

请注意Employee类的重写toString()。组合框的键(实际值)将是Employee实例,在这种情况下显示值为employee.toString()
2.第二种方法是设置组合框的cellFactory属性。

combobox.setCellFactory(new Callback<ListView<Employee>, ListCell<Employee>>() {

    @Override
    public ListCell<Employee> call(ListView<Employee> arg0) {
        return new ListCell<Employee>() {

            private final Button btn;
            {
                setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
                btn = new Button();
            }

            @Override
            protected void updateItem(Employee item, boolean empty) {
                super.updateItem(item, empty);

                if (item == null || empty) {
                    setGraphic(null);
                } else {
                    btn.setStyle(item.getSalary() > 1000 ? "-fx-base:red" : "-fx-base: green");
                    btn.setText(item.getName() + "=" + item.getSalary());
                    setGraphic(btn);
                }
            }
        };
    }
});

这种方法可以更有效地控制细胞渲染。您不仅可以格式化显示值,还可以将任何节点(控件)包含到单元格(在本例中为按钮)并添加一些查看逻辑(item.getSalary()?“”:“”)。实际值保持不变,即Employee实例。

答案 1 :(得分:13)

还有另一种解决方案,即实施StringConverter。它对于对象非常有用:

public class Product {

    private String code;
    private String name;

    public Product(String code, String name) {
        this.code = code;
        this.name = name;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

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

}

转换器实施:

public class ProductConverter extends StringConverter<Product> {

    /** Cache of Products */
    private Map<String, Product> productMap = new HashMap<String, Product>();

    @Override
    public String toString(Product product) {
        productMap.put(product.getName(), product);
        return product.getName();
    }

    @Override
    public Product fromString(String name) {
        return productMap.get(name);
    }

}

视野中的代码:

    ComboBox<Product> cboProducts  = new ComboBox<Product>;
    cboProducts.setConverter(new ProductConverter());
    cboProducts.getItems().addAll(serviceManager.getProductList());

要获取产品的价值,您可以调用getValue()方法:

cboProducts.getValue()

答案 2 :(得分:0)

我知道这个问题已经过时了,但是因为我花了好几个小时毫无意义地挖掘这个问题,所以我必须分享这些结果。即使列表中有字符串重复,似乎带有覆盖toString()方法的ComboBox也会将字符串解析回恰到好处的对象。分辨率必须是基于索引的,而toString()仅用于表示。