java用监听事件监听两个按钮
在版面上设置两个按钮,一个负责打开浏览器,另一个负责打开记事本,两个按钮都用监听事件的方法写,求大神指导...
在版面上设置两个按钮, 一个负责打开浏览器, 另一个负责打开记事本, 两个按钮都用监听事件的方法写, 求大神指导
展开
2个回答
展开全部
你问的是JAVASE么?
使用Button的addActionListener就好了
JFrame frame = new JFrame();
frame.setTitle("my frame");
frame.setBounds(0, 0, 200, 100);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton btn1 = new JButton("OpenBrowser");
JButton btn2 = new JButton("OpenNotepad");
JPanel panel = new JPanel(new FlowLayout(4));
btn1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(e.getActionCommand().equals("OpenBrowser")) {
try {
Process p = Runtime.getRuntime().exec("explorer http://www.qq.com");
p.destroy();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
}) ;
btn2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
Process p = Runtime.getRuntime().exec("notepad");
p.destroy();
} catch (IOException e1) {
e1.printStackTrace();
}
}
});
panel.add(btn1);
panel.add(btn2);
frame.add(panel);
frame.setVisible(true);
追问
为什么btn1中相比btn2中多了一个if判断呢
追答
比如你要对BTN1在点击之后要改成CloseBrowser那不就命令变了么,只是做个示范,你完全可以不加
展开全部
Button a, b, c, d;
a = new Button("a");
......
this.addActionListener(a);
......
if (e.getSource() == a) {
//doing something here
} else if (e.getSource() == b) {
//doing something here
} else if (e.getSource() == c) {
//doing something here
} else if (e.getSource() == d) {
//doing something here
}
随便写的
主要就是下面的那些if判断那样子
请采纳。
a = new Button("a");
......
this.addActionListener(a);
......
if (e.getSource() == a) {
//doing something here
} else if (e.getSource() == b) {
//doing something here
} else if (e.getSource() == c) {
//doing something here
} else if (e.getSource() == d) {
//doing something here
}
随便写的
主要就是下面的那些if判断那样子
请采纳。
追问
注册监听事件的时候没有用到
public void actionPerformed()方法么?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |