user697111
user697111

Reputation: 2262

Sending input to application from Java?

Platform is windows only. From Java I'd like to send input (key strokes and mouse clicks) to the current running application (it's a full screen directx app if that matters).

I know theoretically I could use JNI/JNA to access the Win32 API and use or the like, but honestly not familiar with those nor the win32 api. I'm hoping there is a nice easy Java library out there that has already wrapped this all up in a nice neat package?

Upvotes: 1

Views: 1943

Answers (1)

Marc-Christian Schulze
Marc-Christian Schulze

Reputation: 3254

Take a look at this.

Upvotes: 5

Related Questions