0

我有 2 个名为“数量”和“金额”的 JtextField。当用户输入 qty 时,该值会在一些计算下消失,并将最后一个值设置为数量文本字段。我已将这两个文本字段绑定到 beansbinding 类的属性。当用户输入 qty 时,会调用负责该文本字段的属性,然后我调用了 qty 的 firepropertychange 以及金额的 firepropertychange 以根据 qty 更新金额的值。这很好用。此外,当使用退格按钮删除 qty 的文本字段的值时,qty 的值也会改变。但是当 qty 文本字段为空时,数量文本字段保持其最后一个值(假设 qty 有一个数字“22”和数量文本字段显示“44”,按下退格键时数字为“2”

请问有什么解决办法吗?

4

1 回答 1

1

刚刚检查了默认转换器:它们不处理空/空,您必须实现一个可以做到的并将其设置为绑定。类似的,要查看区别,取消注释转换器设置:

@SuppressWarnings({ "rawtypes", "unchecked" })
private void bind() {
    BindingGroup context = new BindingGroup();
    AutoBinding firstBinding = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE,
          // this is some int property
            this, BeanProperty.create("attempts"), 
            fields[0], BeanProperty.create("text"));
    context.addBinding(firstBinding);
    // firstBinding.setConverter(INT_TO_STRING_CONVERTER); 
    context.bind();
}

static final Converter<Integer, String> INT_TO_STRING_CONVERTER = new Converter<Integer, String>() {
    @Override
    public String convertForward(Integer value) {
        return Integer.toString(value);
    }

    @Override
    public Integer convertReverse(String value) {
        if (value == null || value.trim().length() == 0) return 0;
        return Integer.parseInt((String) value);
    }
};
于 2011-09-21T16:58:07.777 回答