天天看點

java swing事件機制_java SWing事件調用的兩種機制

package test;

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

class SimpleListener implements ActionListener {

public void actionPerformed(ActionEvent e) {

String buttonName = e.getActionCommand();

if (buttonName.equals("按鈕1"))

System.out.println("按鈕1 被點選");

}

}

class ButtonAction extends AbstractAction {

public void actionPerformed(ActionEvent e) {

System.out.println("按鈕2 被點選");

}

}

public class ActionTest {

private static JFrame frame; // 定義為靜态變量以便main使用

private static JPanel myPanel; // 該面闆用來放置按鈕元件

private JButton button1; // 這裡定義按鈕元件

private JButton button2;

public ActionTest() { // 構造器, 建立圖形界面

// 建立面闆

myPanel = new JPanel();

// 建立按鈕

button1 = new JButton("按鈕1"); // 建立按鈕1

// 建立一個actionlistener讓按鈕1注冊,以便響應事件

SimpleListener ourListener = new SimpleListener();

button1.addActionListener(ourListener);

button2 = new JButton();// 建立按鈕2

// 建立一個ButtonAction注入按鈕2,以便響應事件

ButtonAction action = new ButtonAction();

button2.setAction(action);

button2.setText("按鈕2");

myPanel.add(button1); // 添加按鈕到面闆

myPanel.add(button2);

}

public static void main(String s[]) {

ActionTest gui = new ActionTest(); // 建立Simple1元件

frame = new JFrame("Simple1"); // 建立JFrame

// 處理關閉事件的通常方法

frame.addWindowListener(new WindowAdapter() {

public void windowClosing(WindowEvent e) {

System.exit(0);

}

});

frame.getContentPane().add(myPanel);

frame.pack();

frame.setVisible(true);

}

} 來源:http://hi.baidu.com/dobodo/item/f6ed3173d226c547ef1e538d