DocumentFilterで先頭文字を大文字に変換する
Total: 7860
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
DocumentFilter
を使って、文字列の先頭が常に大文字になるように設定します。
Screenshot
Advertisement
サンプルコード
class FirstCharToUpperCaseDocumentFilter extends DocumentFilter {
private final JTextComponent textField;
protected FirstCharToUpperCaseDocumentFilter(JTextComponent textField) {
super();
this.textField = textField;
}
@Override public void remove(
DocumentFilter.FilterBypass fb, int offset, int length)
throws BadLocationException {
Document doc = fb.getDocument();
if (offset == 0 && doc.getLength() - length > 0) {
fb.replace(length, 1,
doc.getText(length, 1).toUpperCase(Locale.ENGLISH), null);
textField.setCaretPosition(offset);
}
fb.remove(offset, length);
}
@Override public void replace(
DocumentFilter.FilterBypass fb, int offset, int length,
String text, AttributeSet attrs) throws BadLocationException {
String str = text;
if (offset == 0 && Objects.nonNull(text) && !text.isEmpty()) {
str = text.substring(0, 1).toUpperCase(Locale.ENGLISH) + text.substring(1);
}
fb.replace(offset, length, str, attrs);
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JTextField
に入力された文字列の先頭一文字が、常に大文字になるように変換するDocumentFilter
を設定しています。
JFormattedTextField
+MaskFormatter
を使用すると指定した文字列長に足りない場合などでアンドゥが実行されるfield1 = new JFormattedTextField(new MaskFormatter("ULLLLLLLLLL"));