Disable input some symbols to JTextField

前端 未结 7 787
长发绾君心
长发绾君心 2020-12-05 21:07

How can I disable input of any symbol except digits to JTextField?

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-05 21:51

    How to Use Formatted Text Fields

     amountField = new JFormattedTextField(NumberFormat.getIntegerInstance());
    

    You can also create your own format to customize.

提交回复
热议问题