tags:

views:

51

answers:

1

Alright, I am not sure if this is even possible with Java specifically, but I am working on a a small program very similar to synergy and I need to be able to completely disable input from the mouse and keyboard on the host computer, but still record the input within the program. I can not think of any clean and robust ways to do this with Java. Is this possible?

+1  A: 

Any way you will have to use JNI for such a purpose.Have a look at this blog ,it will give you some idea.

Emil