我的应用程序中有几个 jtextfield,我想放其中一个允许大写和小写,并限制可以引入 jtextfield 的字符数。我必须单独上课,一个放限制,另一个放大写或小写。
代码到 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 限制 = 11 和大写。