Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Вот решение
private JFormattedTextField amountField;
private NumberFormat amountFormat;
amountField = new JFormattedTextField(amountFormat);
amountField.setValue(new Double(amount));
amountField.setColumns(10);
JPanel fieldPane = new JPanel(new GridLayout(0,1));
fieldPane.add(amountField);
amountFormat = NumberFormat.getNumberInstance()
stackoverflow.com/questions/11093326/restricting-j...
Или так:
stackoverflow.com/questions/18084104/accept-only-n...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question