事件演示 : 各种事件监听器 « 事件 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 事件 » 各种事件监听器屏幕截图 
事件演示
事件演示
 
/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemListener;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Enumeration;
import java.util.Vector;

import javax.swing.AbstractButton;
import javax.swing.Action;
import javax.swing.BorderFactory;
import javax.swing.ButtonGroup;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.border.Border;
import javax.swing.event.ChangeListener;
import javax.swing.text.JTextComponent;

public class ListActions {
  public static void main(String args[]) {
    JFrame frame = new JFrame("TextAction List");
    Container contentPane = frame.getContentPane();

    String components[] "JTextField""JPasswordField""JTextArea",
        "JTextPane""JEditorPane" };

    final JTextArea textArea = new JTextArea();
    textArea.setEditable(false);
    JScrollPane scrollPane = new JScrollPane(textArea);
    contentPane.add(scrollPane, BorderLayout.CENTER);

    ActionListener actionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        // Determine which component selected
        String command = actionEvent.getActionCommand();
        JTextComponent component = null;
        if (command.equals("JTextField")) {
          component = new JTextField();
        else if (command.equals("JPasswordField")) {
          component = new JPasswordField();
        else if (command.equals("JTextArea")) {
          component = new JTextArea();
        else if (command.equals("JTextPane")) {
          component = new JTextPane();
        else {
          component = new JEditorPane();
        }

        // Process action list
        Action actions[] = component.getActions();
        // Java 2 specific code to sort
        Comparator comparator = new Comparator() {
          public int compare(Object a1, Object a2) {
            int returnValue = 0;
            if ((a1 instanceof Action&& (a2 instanceof Action)) {
              String firstName = (String) ((Actiona1)
                  .getValue(Action.NAME);
              String secondName = (String) ((Actiona2)
                  .getValue(Action.NAME);
              returnValue = firstName.compareTo(secondName);
            }
            return returnValue;
          }
        };
        Arrays.sort(actions, comparator);
        // end Java 2 specific code
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw, true);
        int count = actions.length;
        pw.println("Count: " + count);
        for (int i = 0; i < count; i++) {
          pw.print(actions[i].getValue(Action.NAME));
          pw.print(" : ");
          pw.println(actions[i].getClass().getName());
        }
        pw.close();
        textArea.setText(sw.toString());
        textArea.setCaretPosition(0);
      }
    };

    final Container componentsContainer = RadioButtonUtils
        .createRadioButtonGrouping(components, "Pick to List Actions",
            actionListener);

    contentPane.add(componentsContainer, BorderLayout.WEST);
    frame.setSize(400250);
    frame.setVisible(true);
  }
}

class RadioButtonUtils {
  private RadioButtonUtils() {
    // private constructor so you can't create instances
  }

  public static Enumeration getSelectedElements(Container container) {
    Vector selections = new Vector();
    Component components[] = container.getComponents();
    for (int i = 0, n = components.length; i < n; i++) {
      if (components[iinstanceof AbstractButton) {
        AbstractButton button = (AbstractButtoncomponents[i];
        if (button.isSelected()) {
          selections.addElement(button.getText());
        }
      }
    }
    return selections.elements();
  }

  public static Container createRadioButtonGrouping(String elements[]) {
    return createRadioButtonGrouping(elements, null, null, null, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title) {
    return createRadioButtonGrouping(elements, title, null, null, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ItemListener itemListener) {
    return createRadioButtonGrouping(elements, title, null, itemListener,
        null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener) {
    return createRadioButtonGrouping(elements, title, actionListener, null,
        null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener,
      ItemListener itemListener) {
    return createRadioButtonGrouping(elements, title, actionListener,
        itemListener, null);
  }

  public static Container createRadioButtonGrouping(String elements[],
      String title, ActionListener actionListener,
      ItemListener itemListener, ChangeListener changeListener) {
    JPanel panel = new JPanel(new GridLayout(01));
    //   If title set, create titled border
    if (title != null) {
      Border border = BorderFactory.createTitledBorder(title);
      panel.setBorder(border);
    }
    //   Create group
    ButtonGroup group = new ButtonGroup();
    JRadioButton aRadioButton;
    //   For each String passed in:
    //   Create button, add to panel, and add to group
    for (int i = 0, n = elements.length; i < n; i++) {
      aRadioButton = new JRadioButton(elements[i]);
      panel.add(aRadioButton);
      group.add(aRadioButton);
      if (actionListener != null) {
        aRadioButton.addActionListener(actionListener);
      }
      if (itemListener != null) {
        aRadioButton.addItemListener(itemListener);
      }
      if (changeListener != null) {
        aRadioButton.addChangeListener(changeListener);
      }
    }
    return panel;
  }
}

           
         
  
Related examples in the same category
1. 显示addXXXListener方法显示addXXXListener方法
2. 查看事件的发生查看事件的发生
3. A demonstration of the ChangeEvents generated by the BoundedRangeModelA demonstration of the ChangeEvents generated by the BoundedRangeModel
4. 一个应用程序,显示事件,以及采取行动,一个应用程序,显示事件,以及采取行动,
5. 显示如何添加键盘监听显示如何添加键盘监听
6. 素描素描
7. EventListenerList启用秘密标签EventListenerList启用秘密标签
8. TextAction范例TextAction范例
9. StateChange监听StateChange监听
10. 复选框项目监听复选框项目监听
11. AncestorListener演示AncestorListener演示
12. 按键演示按键演示
13. 引动焦点到下一个组件引动焦点到下一个组件
14. PropertyChangeListener演示PropertyChangeListener演示
15. 定时器样本定时器样本
16. KeyListener , ActionListener演示1KeyListener , ActionListener演示1
17. KeyListener , ActionListener演示2KeyListener , ActionListener演示2
18. 行动,鼠标焦点行动,鼠标焦点
19. 加载储存行动加载储存行动
20. 演示WindowListener与WindowAdapter演示WindowListener与WindowAdapter
21. 演示ActionListener演示ActionListener
22. 演示AdjustmentListener演示AdjustmentListener
23. 演示AncestorListener
24. 演示ComponentListener演示ComponentListener
25. A ComponentAdapter.
26. Jar文件文件:进度监控
27. 窗口在屏幕上的位置。
28. Using ComponentListener to catch the JFrame Maximization event
29. 演示ContainerListener演示ContainerListener
30. 演示FocusListener演示FocusListener
31. 演示HyperlinkListener演示HyperlinkListener
32. 演示InternalFrameListener演示InternalFrameListener
33. 演示ItemListener演示ItemListener
34. 执行图形列表选择监测执行图形列表选择监测
35. ItemListener的JRadioButton
36. 演示KeyListener演示KeyListener
37. 演示MenuListener演示MenuListener
38. 演示MouseListener和MouseMotionListener演示MouseListener和MouseMotionListener
39. 演示MouseWheelListener演示MouseWheelListener
40. 演示PopupMenuListener演示PopupMenuListener
41. 演示WindowListener
42. implements VetoableChangeListener to block focus change events
43. 响应按键响应按键
44. 焦点事件演示焦点事件演示
45. 容器事件演示容器事件演示
46. 组件事件演示组件事件演示
47. 示范窗口活动示范窗口活动
48. 处理窗口关闭事件
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.