今天我在学习GUI界面的时候模拟了老师写的一个程序 发现一个问题 希望各位帮忙解惑 代码如下:
import java.awt.*;
import java.awt.event.*;
class ButtonTool1
{
ButtonTool1()
{
abcde();
}
public void abcde()
{
Frame f = new Frame("new Frame");
f.setBounds(300,200,500,300);
f.setLayout(new FlowLayout());
TextField t = new TextField(20);
f.add(t);
inputEventDemo1(t);
f.setVisible(true);
}
public void inputEventDemo1(TextField t)
{
t.addKeyListener(new KeyAdapter()
{
public void keyPressed(KeyEvent e)
{
int i = e.getKeyCode();
if(i<=KeyEvent.VK_0 && i>=KeyEvent.VK_9)
{
System.out.println(i+"不是数字");
e.consume();
}
}
});
}
}
class ButtonDemo1
{
public static void main(String ages[])
{
new ButtonTool1();
}
}
我希望的是程序运行后我在TextField框中能把键盘上除了0-9以外的数字剔除并禁止其写入,但结果却是所有字符都能写入 |
|