libConsole/Getch.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Wed, 26 May 2010 14:56:44 +0200
changeset 126 52722ac7693f
parent 55 2a20d0184041
permissions -rw-r--r--
mysql_db: get not more than num_fields fields from a row I haven't tested the old approach, because i have never installed or used mysql. But it's nice to see that it actually works with this small patch. 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;
            }
        }
    };
}