libConsole/Getch.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 27 Apr 2010 14:51:02 +0200
changeset 123 07b2c0b991af
parent 55 2a20d0184041
permissions -rw-r--r--
ClientDriver for remote access and EmbeddedDriver for local access The default constructor should always use the simplest, possible way to connect to an embedded database. 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;
            }
        }
    };
}