libConsole/Console.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Sat, 19 Jun 2010 22:33:54 +0200
changeset 134 8325a0fc22cd
parent 83 220d76d0d672
permissions -rw-r--r--
simple corrections make both jni functions invisible to others use platform independent separators committer: Markus Bröker <mbroeker@largo.homelinux.org>

import java.io.File;

public class Console {
    public static native int getch ();
    private static void help () {
        String p = System.getProperty ("java.library.path");
        String[] msg = p.split (File.pathSeparator);
        System.err.printf ("Console Error:%n");

        for (int i = 0; i < msg.length; i++)
            System.err.printf ("\t%s%n", msg[i]);
        System.exit (-1);
    };

    static {
        try {
            System.loadLibrary ("Console");
        } catch (UnsatisfiedLinkError ule) {
            System.err.println (ule.getLocalizedMessage ());
            help ();
        }
    };
}