Java - Robot keyPress issue

3k Views Asked by At

I'm trying to send keystrokes (like a virtual keyboard) from my Java code, but I encounter some issues. It works perfectly on normal applications (for example, Notepad, browsers etc.), but not on games (fullscreen or windowed mode).

This is the stripped code I'm using:

import java.awt.Robot;
import java.awt.AWTException;
import java.awt.event.InputEvent;

Robot robot;

robot.keyPress(KeyEvent.VK_A);
robot.keyRelease(KeyEvent.VK_A);

How can this problem be fixed?

3

There are 3 best solutions below

2
On
5
On

I'm sure you already got it working...

Robot robot = new Robot();
0
On

I just had the same problem myself, the problem for me was that the game was running under admin privileges, and my programm wasn't. If i launched it via console with admin rights it worked.