I use the robot class in my Java Code. I want to press the key "_" but the keycode 189 doesn't work for the Code
public void type() throws Exception
Robot rob = new Robot();
rob.keyPress(189);
rob.keyRelease(189);
I use the robot class in my Java Code. I want to press the key "_" but the keycode 189 doesn't work for the Code
public void type() throws Exception
Robot rob = new Robot();
rob.keyPress(189);
rob.keyRelease(189);
The proper way is to use
SHIFT
+-
.It seems that on a French keyboard following code would work, as the keyboard as a designated underscore key:
From this source they say:
Looking at the
8
key, you can find the underscore.