java点击按钮继续
时间: 2023-07-04 07:23:59 浏览: 242
java处理按钮点击事件的方法
您可以使用 ActionListener 接口来实现点击按钮后继续执行程序的功能。示例代码如下:
```
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class ButtonDemo implements ActionListener {
JButton button;
public static void main(String[] args) {
ButtonDemo demo = new ButtonDemo();
demo.createUI();
}
public void createUI() {
JFrame frame = new JFrame("Button Demo");
JPanel panel = new JPanel();
button = new JButton("Click me!");
button.addActionListener(this);
panel.add(button);
frame.add(panel);
frame.pack();
frame.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == button) {
// 在这里编写点击按钮后要执行的代码
}
}
}
```
在上面的示例代码中,我们创建了一个按钮并向其添加了一个 ActionListener。当按钮被点击时,程序会调用 actionPerformed() 方法来执行自定义的代码。您只需要在 actionPerformed() 方法中编写您想要执行的代码即可。
阅读全文