libConsole/Getch.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 05 Mar 2010 22:03:25 +0100
changeset 113 397270b5d21a
parent 55 2a20d0184041
permissions -rw-r--r--
sys/wait.h is the proper header, not wait.h committer: Markus Bröker <mbroeker@largo.homelinux.org>

import java.io.*;

public class Getch {
    public static void main (String args[]) {
        int c;

        System.out.println ("Press q or ESCAPE to quit");

        for (;;) {
            c = Console.getch ();
            switch (c) {
            case 27:
            case 'q':
                System.exit (0);
                break;
            default:
                System.out.printf ("KEY: %c (%d)\n", c, c);
                break;
            }
        }
    };
}