0

如何在 Java 的 FormattedTextField 中仅添加 0 和 255 之间的数字?

我试过这样:

private JFormattedTextField text4;
//...
text4= new JFormattedTextField(paymentFormat);
    text4.getValue();
    text4.setColumns(3);
    try {
        MaskFormatter mask = new MaskFormatter("###");
        mask.install(text4);
    } catch (ParseException ex) {
       System.out.print("Valoarea nu e corecta");
    }

它不起作用......

4

1 回答 1

1

有两种方法

于 2013-03-07T13:56:52.853 回答