写一个个按钮触发监听事件
public class TextActionEvent { public static void main(String[] args) { //按一下按钮触发事件 Frame frame = new Frame(); //添加一个按钮 Button button = new Button(); MyActionListener myActionListener = new MyActionListener(); //这里需要一个监听,所以我们这里添加一个监听 button.addActionListener(myActionListener); //添加按钮,并且添加布局(东南西北中) frame.add(button,BorderLayout.CENTER); //自适应调整布局 frame.pack(); //显示窗口 frame.setVisible(true); } } //写一个自己的监听方法 class MyActionListener implements ActionListener{ @Override public void actionPerformed(ActionEvent e) { System.out.println("您成功点击了监听方法!!!"); } }