为什么在JtextField.setDocument()中设置的PlainDocument()会排除文本的一个字符

时间:2013-05-17 22:29:20

标签: java swing jtextfield maxlength documentfilter

有人知道为什么在JtextField中,当我设置setDocument()属性-class PlainDocument-当我执行程序时,它向我显示该字段ok,但只有我可以输入N-1个字符,当我设置maxlength时支持N个字符长度。

// Block 1
txtPais.setDocument(new MaxLengthTextCntry());

我有另一个内部设置最大长度的类

// Block 2    
public class MaxLengthTextCntry extends MaxLengthGeneric{  
    public MaxLengthTextCntry(  
        {  
            super(2);  
        }  
    }

最后是 MaxLengthGeneric

// Block 3
public abstract class MaxLengthGeneric extends PlainDocument {

        private int maxChars;

        public MaxLengthGeneric(int limit) {
            super();
            this.maxChars = limit;
        }

        public void insertString(int offs, String str, AttributeSet a)
                throws BadLocationException {
            if (str != null && (getLength() + str.length() < maxChars)) {
                super.insertString(offs, str, a);
            }
        }
    }

维护第2块,我用

替换了第1块
((AbstractDocument) txtRucnumero.getDocument()).setDocumentFilter(new MaxLengthTextRuc());

Block 3改变了DocumentFilter的依赖性。不要忘记实现父方法insertString()和replace()!!

public abstract class MaxLengthGeneric extends DocumentFilter {

...

    @Override
    public void insertString(FilterBypass fb, int offs, String str,
            AttributeSet a) throws BadLocationException {

        if ((fb.getDocument().getLength() + str.length()) <= maxChars)
            super.insertString(fb, offs, str, a);
        else
            Toolkit.getDefaultToolkit().beep();
    }

    @Override
    public void replace(FilterBypass fb, int offs, int length, String str,
            AttributeSet a) throws BadLocationException {
        if ((fb.getDocument().getLength() + str.length() - length) <= maxChars)
            super.replace(fb, offs, length, str, a);
        else
            Toolkit.getDefaultToolkit().beep();
    }
}

基于http://docs.oracle.com/javase/tutorial/uiswing/examples/components/TextComponentDemoProject/src/components/DocumentSizeFilter.java

OR SOLUTION 2(或者可能是Jnewbies生活调试的重要性:&lt;替换为&lt; =)

**    if (str != null && (getLength() + str.length() <= maxChars)) {**

1 个答案:

答案 0 :(得分:6)

  

MaxLengthTextArea是从PlainDocument扩展的类:仅用于通过参数设置我想要该字段的字符数

正如我在评论中建议的那样,您应该使用DocumentFilter。阅读Implementing a Document Filter上Swing教程中的部分,了解更多信息和工作示例。