Event listener in Java without app having focus? (Global keypress detection)

前端 未结 3 1896
失恋的感觉
失恋的感觉 2020-11-30 13:41

I\'ve been searching for a while and everybody seems to think this is not possible using just Java, so I\'ll give SO a shot ;)

Is there any way to have my Java appli

3条回答
  •  爱一瞬间的悲伤
    2020-11-30 14:09

    It's my understanding that this can't be done. At a fundamental level, the JVM only generates events for O/S events it receives, and it only receives O/S input events when it has focus.

    I am sure you could use JNI to trigger the O/S to generate events for all input, but that would be very O/S dependent.

提交回复
热议问题