4

我有一个JTextField. 当用户输入aor时j,我希望文本字段中的文本为大写(例如输入“ab”,输出“AB”)。如果第一个字母不是以下之一,

  • a, t, j, q, k, 2, 3, ...,9

我不希望文本字段显示任何内容。

这就是我所拥有的,

public class Gui {
    JTextField tf;
    public Gui(){
        tf = new JTextField();
        tf.addKeyListener(new KeyListener(){
           public void keyTyped(KeyEvent e) {
           }
           /** Handle the key-pressed event from the text field. */
           public void keyPressed(KeyEvent e) {
           }
           /** Handle the key-released event from the text field. */
           public void keyReleased(KeyEvent e) {
           }
        });
    }
}
4

3 回答 3

7

您可以覆盖类的insertString方法Document。看一个例子:

JTextField tf;

public T() {
    tf = new JTextField();
    JFrame f = new JFrame();
    f.add(tf);
    f.pack();
    f.setVisible(true);

    PlainDocument d = new PlainDocument() {
        @Override
        public void insertString(int offs, String str, AttributeSet a) throws BadLocationException {
            String upStr = str.toUpperCase();
            if (getLength() == 0) {
                char c = upStr.charAt(0);
                if (c == 'A' || c == 'T' || c == 'J' || c == 'Q' || c == 'K' || (c >= '2' && c <= '9')) {
                    super.insertString(offs, upStr, a);
                }
            }

        }
    };
    tf.setDocument(d);

}
于 2012-08-09T20:05:20.900 回答
4

如果第一个字母不是“a”/“A”或“t”/“T”或“j”/“J”或“q”/“Q”或“k”/“K”,或任何“2”、“3”、...、“9” 我希望文本字段不显示任何内容。

这是 带有Pattern的DocumentFilter的工作,简单示例

于 2012-08-09T19:51:13.633 回答
2

使用JFormattedTextField类。有关详细信息,请参阅如何使用格式化文本字段

于 2012-08-09T19:48:27.593 回答