author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Thu, 28 May 2009 17:41:18 +0200 | |
changeset 97 | f883331a1bf2 |
parent 83 | 220d76d0d672 |
child 134 | 8325a0fc22cd |
permissions | -rw-r--r-- |
49
77094ec383cf
libConsole: a java native interface example
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff
changeset
|
1 |
public class Console { |
77094ec383cf
libConsole: a java native interface example
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff
changeset
|
2 |
public static native int getch (); |
55
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
3 |
private static void help () { |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
4 |
String p = System.getProperty ("java.library.path"); |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
5 |
String[] msg = p.split (":"); |
83
220d76d0d672
Platform Independend Newlines
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
55
diff
changeset
|
6 |
System.err.printf ("Console Error:%n"); |
55
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
7 |
|
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
8 |
for (int i = 0; i < msg.length; i++) |
83
220d76d0d672
Platform Independend Newlines
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
55
diff
changeset
|
9 |
System.err.printf ("\t%s%n", msg[i]); |
55
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
10 |
System.exit (-1); |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
11 |
}; |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
12 |
|
49
77094ec383cf
libConsole: a java native interface example
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff
changeset
|
13 |
static { |
55
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
14 |
try { |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
15 |
System.loadLibrary ("Console"); |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
16 |
} catch (UnsatisfiedLinkError ule) { |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
17 |
System.err.println (ule.getLocalizedMessage ()); |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
18 |
help (); |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
19 |
} |
2a20d0184041
Console aborts with return code -1 on error
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
49
diff
changeset
|
20 |
}; |
49
77094ec383cf
libConsole: a java native interface example
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff
changeset
|
21 |
} |