我有这个代码:
JFormattedTextField formattedTextField = new JFormattedTextField();
formattedTextField.setBounds(25, 330, 56, 20);
contentPanel.add(formattedTextField);
formattedTextField.setValue(new Double(10.0));
它应该只接受双数字,但如果我输入一个字符,比如's',无论如何都会被采用。如何更改此块以使其仅从键盘接受数字或“,”?忽略任何其他字符