JButton鼠标点击事件
时间: 2023-12-07 13:00:14 浏览: 72
在Java Swing中,可以通过添加ActionListener来为JButton添加鼠标点击事件。以下是一个简单的示例:
```java
import javax.swing.*;
import java.awt.event.*;
public class JButtonExample implements ActionListener {
private JFrame frame;
private JButton button;
public JButtonExample() {
frame = new JFrame("JButton Example");
button = new JButton("Click me!");
// 添加ActionListener
button.addActionListener(this);
frame.getContentPane().add(button);
frame.pack();
frame.setVisible(true);
}
// 实现ActionListener接口中的方法
public void actionPerformed(ActionEvent e) {
if (e.getSource() == button) {
System.out.println("Button clicked!");
}
}
public static void main(String[] args) {
new JButtonExample();
}
}
```
在这个例子中,我们创建了一个JFrame和一个JButton,然后为按钮添加了一个ActionListener。当按钮被点击时,程序会在控制台输出一条消息。
阅读全文