jtextfield documentFilter一旦定义,值就不在jtextfield中加载

时间:2013-09-04 09:10:08

标签: java swing documentlistener documentfilter

我有一个名为tPvv的Jtextfield,写了一个DocumentFilter只接受数字,最大长度为3.我有一个按钮编辑,当我点击该按钮时,整个行加载到textfield中以便从jtable进行编辑(Jtextfield中的值) tPvv保持不变)。没有documentFilter定义的Jtextfield运行良好(根据行选择将值从jtable加载到文本字段)。此外,当我评论DocumentFilter它运作良好,但我无法提供验证(仅接受数字和3的长度)。

我需要检查tPvv的验证,并通过单击编辑按钮根据不同的行选择加载jtable中的值。

`class NumericAndLengthFilter extends DocumentFilter {

        /**
         * Number of characters allowed.
         */
        private int length = 0;

        /**
         * Restricts the number of charcacters can be entered by given length.
         * @param length Number of characters allowed.
         */
        public NumericAndLengthFilter(int length) {
            this.length = length;
        }

        @Override
        public void insertString(FilterBypass fb, int offset, String string,
                AttributeSet attr) throws
                BadLocationException {
            if (isNumeric(string)) {
                if (this.length > 0 && fb.getDocument().getLength() + string.
                        length()
                        > this.length) {
                    return;
                }
                super.insertString(fb, offset, string, attr);
            }
        }

        @Override
        public void replace(FilterBypass fb, int offset, int length, String text,
                AttributeSet attrs) throws
                BadLocationException {
            if (isNumeric(text)) {
                if (this.length > 0 && fb.getDocument().getLength() + text.
                        length()
                        > this.length) {
                    return;
                }
                super.insertString(fb, offset, text, attrs);
            }
        }

        /**
         * This method tests whether given text can be represented as number.
         * This method can be enhanced further for specific needs.
         * @param text Input text.
         * @return {@code true} if given string can be converted to number; otherwise returns {@code false}.
         */
        private boolean isNumeric(String text) {
            if (text == null || text.trim().equals("")) {
                return false;
            }
            for (int iCount = 0; iCount < text.length(); iCount++) {
                if (!Character.isDigit(text.charAt(iCount))) {
                    return false;
                }
            }
            return true;
        }

}
//((AbstractDocument) tPvv.getDocument()).setDocumentFilter(new NumericAndLengthFilter(3));

`我在代码中为验证目的调用定义的最后一条注释行。请解决这个问题。

1 个答案:

答案 0 :(得分:3)

你基本上忽略了传递给你的参数及其含义......

  • offset是文档中将插入新text的偏移量...
  • length是要删除的字符数

现在,如果我们在length语句中使用if,我们就会开始看到差异。基本上,当您致电setText时,length将等于文本字段中的字符数(因为要替换所有文字)...

public void replace(FilterBypass fb, int offset, int length, String text,
                AttributeSet attrs) throws
                BadLocationException {
    if (isNumeric(text)) {

        System.out.println(offset + "; " + length + "; " + text);

        if (this.length > 0 && 
            fb.getDocument().getLength() + text.length() - length > this.length) {
            return;
        }
        super.replace(fb, offset, length, text, attrs);
    }
}

您还在super.insertString(fb, offset, text, attrs);方法中调用了replace,这也没有帮助......

从评论中更新

setText(null)面临的问题与过滤器中isNumeric返回false null和空(“”)值的事实有关,但这些在某些情况下实际上是有效的......

现在,您可以更改isNumeric方法,但这可能会对过滤器的其他方法产生负面影响,相反,我们应该在replace中添加一个附加条件来捕获此案例并处理它恰当地......

public void replace(FilterBypass fb, int offset, int length, String text,
                AttributeSet attrs) throws
                BadLocationException {
    if (isNumeric(text)) {

        System.out.println(offset + "; " + length + "; " + text);

        if (this.length > 0 && 
            fb.getDocument().getLength() + text.length() - length > this.length) {
            return;
        }
        super.replace(fb, offset, length, text, attrs);
    } else if (text == null || text.equals("")) {
        super.replace(fb, offset, length, text, attrs);
    }
}