2

我正在努力为 javafx 创建一个动态视图生成实用程序。我有一些具有 ObjectProperty 或 StringProperty 的类,我想为每个属性创建一个 ComboBox,并尽可能按名称将组合选择的值直接绑定到 Class 属性。在任何 javafx.beans.binding 中是否有一些帮助程序或方法允许我指定一个对象和一个字符串名称并检索属性。或者只是检索属性列表。我现在有一个方法,它获取字符串并按名称将其与属性匹配,但它要求我为对象上的每个属性都有一个案例,在具有 20 多个属性的对象上是很多重复的代码。

我想指定我正在寻找 javafx.bean.property 作为返回类型。

4

2 回答 2

2

您始终可以使用Java 反射

获取属性列表

for (Method method : Node.class.getMethods()) {
    String name = method.getName();
    if (name.endsWith("Property")) {
        Type returnType = method.getReturnType();
        String propName = name.replace("Property", "");
        System.out.println(propName + " : " + returnType);
    }
}

这是绑定和示例的反射方法:

public class ReflectiveBind extends Application {
    /**
     * Reflection call for code like
     * slider1.valueProperty().bindBidirectional(slider2.valueProperty());
     *
     * @param bindee Node which you want to be changed by binding
     * @param propertyName name of the property, e.g. width
     * @param bindTarget Node which you want to be updated by binding
     */
    private static void bind(Object bindee, String propertyName, Object bindTarget) throws Exception {
        // here we get slider1.valueProperty()
        Method methodForBindee = bindee.getClass().getMethod(propertyName + "Property", (Class[]) null);
        Object bindableObj = methodForBindee.invoke(bindee);

        // here we get slider2.valueProperty()
        Method methodForBindTarget = bindTarget.getClass().getMethod(propertyName + "Property", (Class[]) null);
        Object bindTargetObj = methodForBindTarget.invoke(bindTarget);

        // here we call bindBidirectional: slider1.valueProperty().bindBidirectional(slider2.valueProperty())
        Method bindMethod = bindableObj.getClass().getMethod("bindBidirectional", Property.class);
        bindMethod.invoke(bindableObj, bindTargetObj);
    }

    @Override
    public void start(Stage stage) {

        Slider slider1 = new Slider();
        Slider slider2 = new Slider();

        VBox root = new VBox(20);
        root.getChildren().addAll(slider1, slider2);

        stage.setScene(new Scene(root, 200, 100));
        stage.show();

        try {
            //same call as slider1.valueProperty().bindBidirectional(slider2.valueProperty());
            bind(slider1, "value", slider2);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    public static void main(String[] args) { launch(); }
}
于 2012-08-06T20:08:48.213 回答
0

查看 apache commons bean utils

http://commons.apache.org/beanutils/

你说你想...

获取属性值: http ://commons.apache.org/beanutils/api/org/apache/commons/beanutils/BeanUtils.html#getProperty%28java.lang.Object,%20java.lang.String%29

获取属性列表: http ://commons.apache.org/beanutils/api/org/apache/commons/beanutils/BeanUtils.html#describe%28java.lang.Object%29

那里还有很多其他有用的方法,对于 UI 工作来说,它们特别方便,因为它们中的许多都返回了您想要显示的字符串形式。

如果您想要对象而不是字符串,请改用 PropertUtils 类

获取属性的值(不是字符串) http://commons.apache.org/beanutils/v1.8.3/apidocs/org/apache/commons/beanutils/PropertyUtils.html#getProperty%28java.lang.Object, %20java.lang.String%29

获取属性列表: http ://commons.apache.org/beanutils/v1.8.3/apidocs/org/apache/commons/beanutils/PropertyUtils.html#describe%28java.lang.Object%29

于 2012-08-06T19:40:47.357 回答