java – 带有MaskFormatter的JFormattedTextField

我有一个JFormattedTextField,用于限制日期和时间的输入.我想使用MaskFormatter来显示占位符字符.当文本字段已经在使用SimpleDateFormat时,有没有办法在JFormattedTextField之上使用MaskFormatter?

谢谢,
杰夫

解决方法:

public class MaskFormatterTest {
    private static final DateFormat df = new SimpleDateFormat("yyyy/mm/dd");


    public static void main(String[] args) {
        JFrame frame = new JFrame("");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel = new JPanel();

        JFormattedTextField tf = new JFormattedTextField(df);
        tf.setColumns(20);
        panel.add(tf);
        try {
            MaskFormatter dateMask = new MaskFormatter("####/##/##");
            dateMask.install(tf);
        } catch (ParseException ex) {
            Logger.getLogger(MaskFormatterTest.class.getName()).log(Level.SEVERE, null, ex);
        }

        frame.add(panel);
        frame.pack();
        frame.setVisible(true);
    }
}

除非我误解了这个问题.

上一篇:java – 无法实例化类型actionlistener?


下一篇:android – Textfield对齐输入文本中心