-1

我正在使用 Netbeans IDE 我想验证用于输入折扣百分比的文本字段。所以我想停止在 keytyped 事件中输入超过 100 的数字。

谁能帮我解决这个问题

4

1 回答 1

1

不要使用KeyListeners 来尝试过滤文本组件。

反而...

更新了示例

import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.GridBagLayout;
import javax.swing.JFrame;
import javax.swing.JSpinner;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestSpinner02 {

    public static void main(String[] args) {
        new TestSpinner02();
    }

    public TestSpinner02() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JSpinner spinner = new JSpinner();
                spinner.setModel(new javax.swing.SpinnerNumberModel(0, 0, 100, 1));

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new GridBagLayout());
                frame.add(spinner);
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

}
于 2013-03-21T05:58:12.750 回答