0
Click here to show the gifのJava SwingのDocumentFilterは
DocumentFilter df = new DocumentFilter(){
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset,String string, AttributeSet attr) throws BadLocationException {
super.insertString(fb, offset, string.toUpperCase(), attr);
}
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length,String text, AttributeSet attrs) throws BadLocationException {
super.insertString(fb, offset, text.toUpperCase(), attrs);
}
};
txtCognome.setText("");
documentCognome.setDocumentFilter(dff);
問題があります。選択されたテキストは削除されずに残ります(上のgifを見てください)。
あなたは正しいコードを投稿することができます。どうもありがとう。 –
ありがとう、今私はあなたに問題を解決しました!あなたは素晴らしい :-) –