JFormattedTextField无法正常工作

时间:2013-08-07 15:34:12

标签: java swing validation format jformattedtextfield

我有这段代码:

JFormattedTextField formattedTextField = new JFormattedTextField();
        formattedTextField.setBounds(25, 330, 56, 20);
        contentPanel.add(formattedTextField);
        formattedTextField.setValue(new Double(10.0));

它应该只接受双数字,但是如果我输入一个字符,比如's',无论如何它都会被接受。如何更改此块以使其仅从键盘接受数字或','?忽略任何其他角色

0 个答案:

没有答案