Intercept / Disable System Keys in Java -
Is there a way to block system keys in Java, so that the operating system does not promote events? Ctrl + Alt + Del or other security related combination does not make any difference, the main problem, for example the Windows key.
The question in question is for a full-screen application that creates a proprietary issue. Currently my only idea is to solve it through JNI, while the solution of Windows seems simple, I'm not sure about Linux and Mac OS X.
I prefer a standard solution to some extent, maybe there is something else for Java games.
process of the Java key stroke after the operating system), so Java can not "intercept" them. However, you can codify OS specific things in C / C ++ which block keystrokes and use JNI in Java.
Comments
Post a Comment