黑马程序员技术交流社区
标题:
GUI课程中action事件的疑问
[打印本页]
作者:
viliv715
时间:
2014-9-12 11:24
标题:
GUI课程中action事件的疑问
在GUI学习列出目录的例子中,毕老师是在文本框和按钮上判断回车来列出目录的,如果在按钮上添加addKeyListener的keyPressed监听,那么只要按钮是选中状态,点击空格也可以达到目的(下面代码有演示)。但是给文本框添加addActionListener的actionPerformed监听,没有判断回车,点击回车也可以实现效果,是因为只有回车可以激活actionPerformed事件监听吗?代码如下:
import java.awt.Button;
import java.awt.Dialog;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.Label;
import java.awt.TextArea;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.File;
class MyFrame {
private Frame f;
private Button b;
private TextField tf;
private TextArea ta;
private Dialog d;
private Label lab;
private Button okBtn;
MyFrame() {
init();
}
void init() {
f = new Frame("我的电脑");
f.setBounds(300, 100, 600, 500);
f.setLayout(new FlowLayout());
b = new Button("转到");
tf = new TextField(60);
ta = new TextArea(25, 70);
d=new Dialog(f,"tishi xinxi",true);
d.setBounds(400, 200, 240, 150);
d.setLayout(new FlowLayout());
lab= new Label();
okBtn= new Button("queding");
d.add(lab);
d.add(okBtn);
f.add(tf);
f.add(b);
f.add(ta);
f.setVisible(true);
action();
}
//窗体上的操作
void action() {
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
buttonAction();
keyAction();
}
void keyAction(){
//设置键盘监听器,当输入enter键的时候实现和点击鼠标同样的功能!
b.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent e){
String dirPath = tf.getText();// 获取文本(我们想验证的是路径),接下来获取文件
File file = new File(dirPath);// 获取文件
if (file.exists() && file.isDirectory()) {// 判断,存在否以及是否是文件夹
ta.setText("");// 如果符合条件的话,清空以前的数据;
String[] names = file.list();
for (String name : names) {
ta.append(name + "\r\n");
}
System.out.println("=======");
} else {
ta.setText("");
ta.append("对不起,请确认您输入的是路径 !");
}
System.out.println(e.getKeyCode());
}
});
tf.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String dirPath = tf.getText();// 获取文本(我们想验证的是路径),接下来获取文件
File file = new File(dirPath);// 获取文件
if (file.exists() && file.isDirectory()) {// 判断,存在否以及是否是文件夹
ta.setText("");// 如果符合条件的话,清空以前的数据;
String[] names = file.list();
for (String name : names) {
ta.append(name + "\r\n");
}
//System.out.println("=======");
} else {
ta.setText("");
ta.append("对不起,请确认您输入的是路径 enter!");
}
}
});
}
void buttonAction() {
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String dirPath = tf.getText();// 获取文本(我们想验证的是路径),接下来获取文件
File file = new File(dirPath);// 获取文件
if (file.exists() && file.isDirectory()) {// 判断,存在否以及是否是文件夹
ta.setText("");// 如果符合条件的话,清空以前的数据;
String[] names = file.list();
for (String name : names) {
ta.append(name + "\r\n");
}
//System.out.println("=======");
} else {
d.setVisible(true);
}
}
});
}
}
public class MyWinDemo {
public static void main(String[] args) {
new MyFrame();
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2