Demonstrating the KeyListener : Various Event Listener « Event « Java






Demonstrating the KeyListener

Demonstrating the KeyListener
  
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

import javax.swing.JFrame;
import javax.swing.JTextField;

public class KeyTest {
  public static void main(String args[]) {
    JFrame frame = new JFrame("Key Listener");
    Container contentPane = frame.getContentPane();

    KeyListener listener = new KeyListener() {
      public void keyPressed(KeyEvent e) {
        dumpInfo("Pressed", e);
      }

      public void keyReleased(KeyEvent e) {
        dumpInfo("Released", e);
      }

      public void keyTyped(KeyEvent e) {
        dumpInfo("Typed", e);
      }

      private void dumpInfo(String s, KeyEvent e) {
        System.out.println(s);
        int code = e.getKeyCode();
        System.out.println("\tCode: " + KeyEvent.getKeyText(code));
        System.out.println("\tChar: " + e.getKeyChar());
        int mods = e.getModifiersEx();
        System.out.println("\tMods: "
            + KeyEvent.getModifiersExText(mods));
        System.out.println("\tLocation: "
            + location(e.getKeyLocation()));
        System.out.println("\tAction? " + e.isActionKey());
      }

      private String location(int location) {
        switch (location) {
        case KeyEvent.KEY_LOCATION_LEFT:
          return "Left";
        case KeyEvent.KEY_LOCATION_RIGHT:
          return "Right";
        case KeyEvent.KEY_LOCATION_NUMPAD:
          return "NumPad";
        case KeyEvent.KEY_LOCATION_STANDARD:
          return "Standard";
        case KeyEvent.KEY_LOCATION_UNKNOWN:
        default:
          return "Unknown";
        }
      }
    };

    JTextField text = new JTextField();
    text.addKeyListener(listener);
    contentPane.add(text, BorderLayout.NORTH);
    frame.pack();
    frame.show();
  }
}
           
         
    
  








Related examples in the same category

1.Display the addXXXListener methods of any Swing classDisplay the addXXXListener methods of any Swing class
2.Show events as they happenShow events as they happen
3.A demonstration of the ChangeEvents generated by the BoundedRangeModelA demonstration of the ChangeEvents generated by the BoundedRangeModel
4.An application that shows the Action class in, well, actionAn application that shows the Action class in, well, action
5.Showing how to add Actions for KeyStrokesShowing how to add Actions for KeyStrokes
6.SketchSketch
7.EventListenerList enabled Secret LabelEventListenerList enabled Secret Label
8.TextAction exampleTextAction example
9.StateChange ListenerStateChange Listener
10.CheckBox Item ListenerCheckBox Item Listener
11.AncestorListener DemoAncestorListener Demo
12.KeyStroke SampleKeyStroke Sample
13.Focus Next Component SampleFocus Next Component Sample
14.PropertyChangeListener SamplePropertyChangeListener Sample
15.Timer SampleTimer Sample
16.KeyListener, ActionListener Demo 1KeyListener, ActionListener Demo 1
17.KeyListener, ActionListener Demo 2KeyListener, ActionListener Demo 2
18.Action, Mouse FocusAction, Mouse Focus
19.Swing Action DemoSwing Action Demo
20.Load Save ActionLoad Save Action
21.Demonstrating the WindowListener with a WindowAdapterDemonstrating the WindowListener with a WindowAdapter
22.Demonstrating the ActionListenerDemonstrating the ActionListener
23.Demonstrating the AdjustmentListenerDemonstrating the AdjustmentListener
24.Demonstrating the AncestorListener
25.Demonstrating the ComponentListenerDemonstrating the ComponentListener
26.A ComponentAdapter.
27.JAR Archives: Pack Progress Monitor
28.A position of a window on the screen.
29.Using ComponentListener to catch the JFrame Maximization event
30.Demonstrating the ContainerListenerDemonstrating the ContainerListener
31.Demonstrating the FocusListenerDemonstrating the FocusListener
32.Demonstrating the HyperlinkListenerDemonstrating the HyperlinkListener
33.Demonstrating the InternalFrameListenerDemonstrating the InternalFrameListener
34.Demonstrating the ItemListenerDemonstrating the ItemListener
35.Implement a graphical list selection monitorImplement a graphical list selection monitor
36.ItemListener for JRadioButton
37.Demonstrating the MenuListenerDemonstrating the MenuListener
38.Demonstrating the MouseListener and MouseMotionListenerDemonstrating the MouseListener and MouseMotionListener
39.Demonstrating the MouseWheelListenerDemonstrating the MouseWheelListener
40.Demonstrating the PopupMenuListenerDemonstrating the PopupMenuListener
41.Demonstrating the WindowListener
42.implements VetoableChangeListener to block focus change events
43.Responding to KeystrokesResponding to Keystrokes
44.Focus Event DemoFocus Event Demo
45.Container Event DemoContainer Event Demo
46.Component Event DemoComponent Event Demo
47.Window Event DemoWindow Event Demo
48.Handle a window closing event
49.Installs/resets a ComponentListener to resize the given window to minWidth/Height if needed