アプリにいくつかのjtextfieldがあり、そのうちの1つを大文字と小文字を使用できるようにし、jtextfieldに導入できる文字数の制限を設定したいと思います。クラスを分けて、1つは制限を設定し、もう1つは大文字または小文字を設定する必要があります。
jtextfieldの限界までのコード:
package tester;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.PlainDocument;
public class TextLimiter extends PlainDocument {
private Integer limit;
public TextLimiter(Integer limit) {
super();
this.limit = limit;
}
public void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
if (str == null) {
return;
}
if (limit == null || limit < 1 || ((getLength() + str.length()) <= limit)) {
super.insertString(offs, str, a);
} else if ((getLength() + str.length()) > limit) {
String insertsub = str.substring(0, (limit - getLength()));
super.insertString(offs, insertsub, a);
}
}
}
大文字またはその逆を設定するコードは次のとおりです。
package classes;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DocumentFilter;
public class upperCASEJTEXTFIELD extends DocumentFilter {
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset, String text,
AttributeSet attr) throws BadLocationException {
fb.insertString(offset, text.toUpperCase(), attr);
}
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text,
AttributeSet attrs) throws BadLocationException {
fb.replace(offset, length, text.toUpperCase(), attrs);
}
}
質問を再開するには、jtextfield limit=11以上を設定します。