Java Robot() Constructor
Syntax
Robot() constructor from Robot has the following syntax.
public Robot() throws AWTException
Example
In the following code shows how to use Robot.Robot() constructor.
//from w w w . j av a 2s.c om
import java.awt.Robot;
import java.awt.event.KeyEvent;
public class Main {
public static void main(String[] argv) throws Exception {
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_A);
robot.keyRelease(KeyEvent.VK_A);
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »