2012-04-28 40 views
1

私はインターネット上で検索し、すべてのトピックでJTextField入力を制限するためのこの解決策を見つけました。制限JTextField文字入力

public class FixedDocument extends PlainDocument { 
    private int limit; 
    // optional uppercase conversion 
    private boolean toUppercase = false; 

    FixedDocument(int limit) { 
    super(); 
    this.limit = limit; 
    } 

    FixedDocument(int limit, boolean upper) { 
    super(); 
    this.limit = limit; 
    toUppercase = upper; 
    } 

    public void insertString (int offset, String str, AttributeSet attr) throws BadLocationException { 
    if (str == null){ 
     return; 
    } 
    if ((getLength() + str.length()) <= limit) { 
    if (toUppercase) str = str.toUpperCase(); 
    super.insertString(offset, str, attr); 
    } 
    } 
} 

しかし、私はそのコードに問題があります。このコード行 "super.insertString(offset、str、attr);"私にエラーが表示されます:

no suitable method found for insertString(int,java.lanf.String,javax.print.attribute.AttributeSet) 
method javax.swing.text.PlainDocument.insertString(int,java.lang.String,javax.text.AttributeSet) is not applicable 
    (actual argument javax.printattribute.AttributeSet cannot be converted to javax.swing.text.AttributeSet by method invocation conversion) 

私はここで間違っていますか?

+0

これは私自身のためにDocumentFilterを使用します。 –

答えて

2

あなたの問題は、間違ったAttributeSetクラスをインポートしていることです。 javax.swing.text.AttributeSetをインポートするときにjavax.print.attribute.AttributeSetをインポートしています。エラーメッセージが表示されます。ここでも、自分自身のためにDocumentFilterを使用します。

+0

それは働いて:)ありがとうございました。 –

関連する問題