-1

我有一个名为 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));

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

4

1 回答 1

3

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

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

现在,如果我们使用lengthinsideif语句,我们开始看到不同之处。基本上,当您调用 时setTextlength将等于文本字段中的字符数(因为所有文本都将被替换)...

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);
    }
}
于 2013-09-04T09:25:40.777 回答